728x90
반응형

 

Servlet 버전의 차이로 프로젝트 설정이 많이 바뀔수 있습니다.

 

Servlet 버전을 수정하는 방법을 알아보았습니다.

 

 

 

 

web.xml Servlet 2.5 스키마를 사용하는 파일의 헤더

<?xml version="1.0" encoding="UTF-8"?>
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      version="2.5">
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
 

 

 

 

web.xml Servlet 3.0 스키마를 사용하는 파일의 헤더

<?xml version="1.0" encoding="UTF-8"?>
      version="3.0">
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
 

 

 

 

web.xml Servlet 3.1 스키마를 사용하는 파일의 헤더

<?xml version="1.0" encoding="UTF-8"?>
<web-app
    version="3.1">
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
 

 

 

 

web.xml Servlet 4.0 스키마를 사용하는 web.xml 파일의 헤더

<?xml version="1.0" encoding="UTF-8"?>
<web-app
    version="4.0">
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
 

 

728x90
반응형

'프로그래밍 > Spring' 카테고리의 다른 글

[Spring] Gradle 외부 Jar 등록  (0) 2019.04.22
[Spring] Spring Boot 2.0 @Configuration  (0) 2019.04.17
[Spring] Spring Boot 2.0 Error Custom Page  (0) 2019.04.17
[Spring] Spring Boot Servlet 등록  (0) 2019.04.17
MAC OS에 maven 설치  (0) 2019.02.26

+ Recent posts