본문 바로가기
반응형

전체 글87

[Spring] context xml 분리 준비물 1. Spring Framework MVC MySQL & Mybatis 연동 web.xml contextConfigLocation /WEB-INF/spring/root-context.xml org.springframework.web.context.ContextLoaderListener appServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF/spring/appServlet/servlet-context.xml 1 appServlet / Servlet Context Spring MVC 와 관련있는 빈을 설정 web.xml 의 참고 Root Context Spring MVC 와 분리되어 빈을 관리.. 2021. 1. 18.
[Spring] web.xml 설명 web.xml Deployment Descriptor (배포 서술자) web.xml 의 Root-Element 기능을 담당 web.xml(DD) 의 Title 설정, 기본적으로 프로젝트명을 설정 project_name 서버로 요청이 들어왔을 때 표시할 welcome-file 을 순서대로 정의 없을 경우 404 페이지 호출 index.jsp index.html error code, exception type 을 error page 로 매핑 404 /error/404.jsp java.lang.NullPointException /error/404.jsp Servlet context 의 parameter 선언 contextConfigLocation /WEB-INF/spring/root-context.xml Ap.. 2021. 1. 18.
[Java] Escape 문자 문자열 내에서 사용하는 것으로, 특수문자를 표현하거나, 특수기능을 사용할때 사용한다. 문자 의미 \n 개행문자 \t 탭 \r 스크린커서의의 위치를 현재 줄의 처음으로 이동 \\ \ 문자 \" 큰 따옴표 \' 작은 따옴표 \b 백스페이스 \u 유니코드 문자 2021. 1. 18.
[Mybatis] Mybatis Procedure 호출 ※ Mybatis 에서 DB Procedure 호출하는 방법 1. Mapper xml { CALL 프로시저명( #{param1}, #{param2, mode=IN, jdbcType=VARCHAR, javaType=String}, #{param3, mode=OUT, jdbcType=VARCHAR, javaType=String}, } 2. 호출 java Map call = new HashMap(); call.put("param1", "a"); call.put("param2", "a"); System.out.println( call.toString() ); // param1 = a , param2 = a dao.callProcedure( call ); System.out.println( call.toStrin.. 2021. 1. 15.
[Eclipse] Apache Tomcat 설정 ※ Eclipse Tool 에서 Apache Tomcat 을 설정하는 방법 1. 준비물 - 이클립스 설치 - 톰캣 다운로드 2. 과정 1. 톰캣 다운로드 tomcat.apache.org/ Apache Tomcat® - Welcome! The Apache Tomcat® software is an open source implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies. The Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket specifications ar tomcat.apac.. 2021. 1. 15.
[Spring] Spring Framework MVC MySQL & Mybatis 연동 ※ Spring Boot 가 아닌 Spring Framework MVC 프로젝트에서 MySQL 와 Mybatis 연동 설정하는 방법 1. 준비물 - Spring Framework MVC Project - MySQL 사용자계정 추가 - MySQL Schema 및 Table 추가 2. 과정 1. Project 디렉토리 확인 ※ 이전 Spring Framework MVC Project의 폴더 구조를 보면 위 그림과 같이 생성되어있습니다. 2. pom.xml 수정 ※ 이전 Spring Framework MVC Project 에서 MySQL 사용을 위한 JDBC 관련 dependency 를 추가하지 않았기 때문에 추가해야 합니다. ※ 다른 설정 부분은 수정하지 마시고 pom.xml 에 아래 라인을 추가 mysql.. 2021. 1. 15.
반응형