본문 바로가기

프로그래밍108

nodejs 기초 참고자료!! 진짜기초 김우진님 ppt 조대협님 블로그 http://bcho.tistory.com/900 2015. 9. 11.
간단한 달력출력!! public class CalendarExam {public void makeCalendar(int year, int month){Calendar c = Calendar.getInstance();//c.set(Calendar.DATE, 1);c.set(year,month-1,1);//현재월의 마지막 날짜System.out.println("\t\t\t"+c.get(Calendar.YEAR) +"년 " +(c.get(Calendar.MONTH)+1)+"월" );int lastOfDate = c.getActualMaximum(Calendar.DATE);//System.out.println(lastOfDate);//요일 구함.. (일 - 1, 월 - 2 ...)int week = c.get(Calendar.DA.. 2015. 9. 11.
spring ajax 소스부터.. ?1234567891011121314151617var data = {usr_id : "jack" , usr_pw : "jack", usr_name : "jack"}; $.ajax({ url : "/contextPath/test/json", method : "POST", contentType : "application/json", data : JSON.stringify(data), success : function() { alert("전송 성공"); }, error : function(XHR, textStatus, errorThrown) { alert("Error: " + textStatus); alert("Error: " + errorThrown); }});위와 같이 json 객체를 JSON.. 2015. 7. 29.
web - <load-on-startup> boardorg.springframework.web.servlet.DispatcherServletcontextConfigLocation/WEB-INF/board-servlet.xml 1 서블릿은 최초로 요청이 들어올때 초기화 된다. 그러므로... 처음 요청한 사용자는 상대적으로 요청 시간이 더 길어지게 마련이다. 그것을 방지하기 위해서, 1 설정이 필요하다. 여기에 들어가는 숫자가 0보다 크면 서버가 스타트 되면서 서블릿을 초기화 한다.. 서블릿이 여러개 일 경우... 해당 설정이 여러번 되어있었을때.. 가장 낮은 수가 가장 먼저 초기화 된다. 그랬을경우 같은 수가 두번 나온다면.... 먼저 작성된 서블릿부터 초기화된다.. 2015. 7. 29.