Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Cookie
- 블록체인
- CSS
- AWS
- jQuery
- 웹게임
- express
- EC2
- 배포
- tiles.xml
- model1
- Servlet
- 도커
- docker
- 비트코인
- Spring
- autowired
- HTML
- 암호화
- 알고리즘
- websocket
- JavaScript
- PL/SQL
- JSP
- Ajax
- RDS
- node.js
- SQL
- phaser
- 웹소켓
Archives
- Today
- Total
記錄
JSP) xml, application 객체 본문
web.xml
WebContent 안에 있는 모든 페이지가 공유할 수 있는 자원이면서 영향을 받는 설정이라고 볼 수 있다. 웹 어플리케이션 하나가 갖는 하나의 설정파일과도 같다. 웹 전체를 설정하고 여러가지 정보를 저장한다. 따라서 웹 어플리케이션 구동시 가장 먼저 web.xml을 읽게 된다. (클라이언트는 web.xml에 접근 할 수 없다. WEB-INF는 보안 폴더로 클라이언트가 접속할 수 없는 경로다)
welcom-file-list
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
>> context root로 접근하면 띄워줄 defalut 페이지를 설정한다. 복수의 파일이 설정된 경우 맨 위에 있는 것이 우선권을 갖는다.
Context-param
<context-param>
<description>기본적인 설명을 하시면...</description>
<param-name>email</param-name>
<param-value>webmaster@bit.or.kr</param-value>
</context-param>
<context-param>
<description>파일 저장 경로</description>
<param-name>FilePath</param-name>
<param-value>C:\\Web\\download</param-value>
</context-param>
>> web.xml에 초기 파라미터를 설정한다. 이 값은 웹 어플리케이션 어디에서든 application 객체를 통해 사용이 가능하다. ( ex: application.getInitParameter("param-name"); )
Application 객체 함수
'Web > JSP' 카테고리의 다른 글
JSP) URL, URI, URN (0) | 2018.03.20 |
---|---|
JSP) include, forward, request객체 유효범위 (0) | 2018.03.20 |
JSP) 스파게티코드 vs out객체 활용 (예제) (0) | 2018.03.20 |
JSP) jsp처리과정, Buffer (0) | 2018.03.20 |
JSP) request (0) | 2018.03.20 |
Comments