본문 바로가기
반응형

JavaWeb17

[MVC] Gradle MVC에서 Controller 호출 방법 Controller 호출 방법 1번 package com.apress.prospringmvc.bookstore.web; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; @Controller public class IndexController { @RequestMapping(value="/index.htm") public ModelAndView indexPage() { return new ModelAndView("index"); } } --------------.. 2015. 9. 7.
[MVC] Spring 관련 URL spring mvc 강좌 http://java-school.net/spring/list1.php http://linuxism.tistory.com/456 spring in action spitter프로젝트 세팅법 검색 키워드 spring in action spitter http://www.manning-sandbox.com/thread.jspa?threadID=47320 툴 다운 받는 곳 http://www.springsource.org/downloads/sts-ggts http://blog.daum.net/openeidos/8879784 http://www.ksug.org/152 설치 http://www.okjsp.net/bbs?seq=205560 http://blog.naver.com/PostView.. 2015. 9. 7.
[JSP] 많이 쓰는 한줄 코드 %@page import="java.io.*, java.util.Date"%> 2015. 9. 7.
[JSP] filter Filter 순서 1.Filter 클래스 2.web.xml 3.jsp, servlet 1.filter class import java.io.*; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; public class SimpleFilter implements Filter { public void destroy() { // TODO Auto-generated method stub .. 2015. 9. 7.
[JSP] JSTL [s] [m] [l] [f] 원하는 스타일일 줄 때 결과 [s] 13. 9. 21 오후 2:56 [m] 2013. 9. 21 오후 2:56:50 [l] 2013년 9월 21일 (토) 오후 2시 56분 50초 [f] 2013년 9월 21일 토요일 오후 2시 56분 50초 KST 2013/09/264 (토) (오후) 03:04:30 --------------------------------------------------------------------------------------------------------------------------- ,를 표시 여부 #의자리에 유효 숫자가 있음 표시 없음 표시 안함. 0의 위치에 유효 숫자가 아니면 0으로 표시 %표시 주어진 숫자가 1보다 작아야 됨. 금액표.. 2015. 9. 7.
[JSP] JSTL 전용뷰어 보기 JSTL을 사용하기 위해서는 다음과 같은 taglib가 있어야됨. 간단한 사용법 변수선언 page, request, session, application 영역에 설정하는 것도 가능함. -------------------------------------------------------------------------------------------------------------- 선언한 변수의 삭제 -------------------------------------------------------------------------------------------------------------- if 문 testaaaa ----------------------------------------.. 2015. 9. 7.
[Spring] spring framework 설치 ## Windows 설치 http://blog.daum.net/chemusic/29 http://warmz.tistory.com/692 http://babtingdev.tistory.com/330 ## Linux 설치 http://hmgirl.tistory.com/97 ## Spring 이외의 여러 패키지 설치 정보 http://ebonny.wordpress.com/category/java-cbd-class/3-linux-centosredhat-%EA%B8%B0%EC%A4%80/ 2015. 9. 7.
[JSP] 익스프레션 전용뷰어 보기 javax.servlet.jsp.JspContext javax.servlet.ServletRequest javax.servlet.Http.HttpSesson javax.servlet.ServletContext 익스프레션 언어 EL식 안에 있는 데이터 이름이 해석되는 순서 page->request->session->application ${pageScope.SUM} ${requestScope.SUM} ${sessionScope.SUM} ${applicationScope.SUM} 엘리먼트를 통해 입력된 데이터를 가져올 때 param ${param.SUM}, ${param["SUM"]} paramValues checkbox, select일 같이 갑이 여러개 일경우 ${paramㅍValues.SU.. 2015. 9. 7.
[JSP] web.xml 구성 Web.xml 구성 web.xml에 설정된 초기화 파라미터 읽기 String filename = getInitParameter("FILE_NAME"); ServletConfig config = getServletConfig(); String filename = config.getInitParameter("FILE_NAME"); fibonacci-servlet FibonacciServlet 0 -- fibonacci-servlet /fibonacci greeting-servlet GreetingServlet --서블릿 초기화 파리미터 FILE_NAME C:\\data\\greeting_log.txt greeting-servlet /greeting dbname-jsp /DBName.jsp --JSP파일 연결.. 2015. 9. 7.
[JSP] 서블릿 클래스의 init, destory 메서드 서블릿 클래스의 init, destory 메서드 public void init() throws ServletException{ } public void destory(){ } JSP에서의 init, destory 메서드 2015. 9. 7.
[JSP]useBean scope=객체의 유지할 범위를 설정 pageContext(자신페이지) request(페이지간 이동) session(브라우저) application(톰켓) http://codeworld.tistory.com/entry/UseBean-%EC%82%AC%EC%9A%A9-%EB%B0%A9%EB%B2%95 http://okjsp.pe.kr/lecture/lec04/bean01.htm http://blog.daum.net/oraclejava/15867606 x: y: distance: 2015. 9. 7.
[JSP] include 전용뷰어 보기 정적: include될 jsp 파일의 전역변수를 부모에서 사용가능 동적: include될 jsp파일의 전역변수를 부모에서 사용불가 http://devyongsik.tistory.com/92 --includes.jsp--- incl B incl CC contains jsp:include jsp:include jsp:include @include @include jsp:include @include @include --b_act.jsp--- 2015. 9. 7.
[빌드오류] Access restriction: The type QName is not accessible due to restriction on required library http://stackoverflow.com/questions/860187/access-restriction-on-class-due-to-restriction-on-required-library-rt-jar There's another solution that also works. I found it on this forum: Go to the Build Path settings in the project properties. Remove the JRE System Library Add it back; Select "Add Library" and select the JRE System Library. The default worked for me. This works because you have mul.. 2015. 9. 7.
문자열 포맷 String.format("%TF", now);//날짜를 yyyy-mm-dd형식 String.format("%TT", now);//시각을 HH:MM:SS형식 2015. 9. 7.
[JSP] 자주 쓸만한 것들. request.getParameter("aaa"); //파라미터 받을 때 request.getLocale().toString() //지역코드 request.getContentLength() //파일길이 경로 돌리기 --------------------------------------------------------------------------------------------- response.sendRedirect("http://naver.com"); //단순 URL로 경로 돌리기 클라이언트보고 이경로 조회하라고 시킴. //바로 서버로 전송 이방법을 사용하면 속성이나 파라미터도 같이 넘어감. request.setAttribute("q", new Integer(num1 / num2));//속성정보 Re.. 2015. 9. 7.
파일 읽기 첨부파일 (1) 0) { buf = new byte[len]; n= request.getInputStream().read(buf); } %> getContentType() getContentLength() aaaa 2015. 9. 7.
참고 URL 전용뷰어 보기 JAVA MVC http://blog.outsider.ne.kr/902?category=2 이클립스 45초 서버오류 http://blog.outsider.ne.kr/397?category=5 단축키 http://blog.outsider.ne.kr/243?category=5 http://wiki.javajigi.net/pages/viewpage.action?pageId=155&focusedCommentId=351043586#comment-351043586 JDBC http://yagi815.tistory.com/471 http://blog.daum.net/ikssjjang/123 http://blog.nextcube.pe.kr/109 토드 설치법 http://blog.daum.net/ikss.. 2015. 9. 7.
반응형