최종프로젝트 관련 정리
-
Spring - Asynchronous request processing (비동기 요청 처리)최종프로젝트 관련 정리 2020. 8. 22. 10:45
Spring - Asynchronous request processing (비동기 요청 처리) 1. pom.xml javax.servlet javax.servlet-api 3.0.1 provided 2. web.xml ... 3. web.xml 내의 servlet설정에 async-supported 태그 값을 true로 설정한다. appServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF/spring/appServlet/servlet-context.xml 1 true 종류 1.Callable 요청을 처리하는 Servlet쓰레드가 반환되면 Spring MVC에서 제어하는 쓰레드에 의해 비동기처리된다. C..
-
STS 3버전 4로 마이그레이션최종프로젝트 관련 정리 2020. 8. 19. 20:55
sts 3 버전 -> 4버전으로 마이그레이션 하기 기본 환경 - Spring Framework 3.1.1 - java version 1.6 - Maven compiler source 1.6 target 1.6 - servlet-api 2.5 - jsp-api 2.1 변경 될 환경 - Spring Framework 4.3.4 - java version 1.8 - Maven compiler source 1.8 target 1.8 - servlet-api 3.0 - jsp-api 2.2 설정 변경 pom.xml 수정 1. java version 1.6 -> 1.8 / springfamework version 3.1.1 -> 4.3.4 1.8 4.3.4.RELEASE 1.6.10 1.6.6 2. Servlet ..