web.xml
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<display-name>trade</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<!-- 한글 인코딩 처리 설정 -->
<filter>
<filter-name>SetUTF8</filter-name>
<filter-class>org.apache.catalina.filters.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>SetUTF8</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- 한글 인코딩 처리 설정 -->
</web-app>
db에 연결될 context.xml
<Context>
<Resource
name="jdbc/mvc"
auth="Container"
type="javax.sql.DataSource"
driverClassName="com.mysql.cj.jdbc.Driver"
username="c7d2307t1"
password="1234"
url="jdbc:mysql://itwillbs.com:3306/c7d2307t1"
maxWait="5000"
/>
</Context>
라이브러리
util 패키지
'프로젝트' 카테고리의 다른 글
[MES 프로젝트] 2. 요구사항 정의서 (0) | 2023.12.06 |
---|---|
[MES 프로젝트] 1. 프로젝트 주제선정 (0) | 2023.12.05 |
쇼핑몰 개발 04. 개발 css 템플릿 안쓰고 직접 만들기 (1) | 2023.11.24 |
쇼핑몰 개발 02. 기획[테이블 정의서] (0) | 2023.11.24 |
쇼핑몰 개발 01. 기획[요구사항 정의서] (1) | 2023.11.24 |