개발노트

web.xml 본문

Programming/Spring

web.xml

dev? 2022. 5. 27. 14:17
반응형

 

web.xml

- web application의 설정을 위한 Deployment Descriptor(배포 설명자)로써 XML형식의 파일이다. 

- web.xml 파일의 설정들은 Web Application 시작시 메모리에 로딩된다. 

 

📌 배포 설명자 
애플리케이션의 클래스,리소스,구성 및 웹 서버가 이를 사용해서 웹 요청을 처리하는 방법을 기술하는곳으로, 
애플리케이션에 요청이 수신되면 배포 설명자(web.xml)을 통해 요청 URL을 (요청을 처리하는)코드에 매핑해 준다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
<web-app>     
    <!-- aliases 설정 -->     
    <servlet>         
        <servlet-name>welcome</servlet-name>         
        <servlet-class>servlets.Servlet</servlet-class>     
    </servlet>     
    
    <!-- 매핑 -->     
    <servlet-mapping>        
        <servlet-name>welcome</servlet-name>         
        <url-pattern>/welcome</url-pattern>     
    </servlet-mapping> 
</web-app>
cs
 

 

 

 


https://hipdizzy.tistory.com/61

 

web.xml이란 무엇인가?

Web.xml 스프링 웹프로그래밍이나 서블릿위주인 웹프로그래밍을 하다보면 web.xml 을 만지는 일들이 있다. 그렇다면 도대체 web.xml이 무엇일까? web.xml에서 서블릿 맵핑 되는 방법 ,인증이 필요한 URL

hipdizzy.tistory.com

 

https://gmlwjd9405.github.io/2018/10/29/web-application-structure.html

 

[Web] web.xml 설정 내용, 역할 및 간단한 예시 이해하기 - Heee's Development Blog

Step by step goes a long way.

gmlwjd9405.github.io

 

 

반응형

'Programming > Spring' 카테고리의 다른 글

Spring Form 과 일반 Form  (0) 2020.04.27