<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<!-- Root Context: defines shared resources visible to all other web components -->
<context:component-scan base-package="com.ssafy.model"></context:component-scan>
<bean id="ds" class="org.springframework.jdbc.datasource.SimpleDriverDataSource">
<property name="driverClass" value="com.mysql.cj.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql://127.0.0.1:3306/ssafy_test?serverTimezone=UTC&useUniCode=yes&characterEncoding=UTF-8"/>
<property name="username" value="ssafy"/>
<property name="password" value="ssafy"/>
</bean>
</beans>
만약에 context 자동완성 안된다면?? namespaces에 context 추가
6.servlet-context.xml에서 web관련정보만 받아올 수 있도록 context scan 변경하기
=> annotation-driven (annotation 인식과 url들어왔을 때 어떤 controller로 넘겨야하는지 알려주는 handlermapping역할), resources(정적자원 위치 반영), controller 역할스캔권장, ViewResolver(controller에서 리턴해준 파일명에 위치와 확장자 붙여주는 역할) 설정
<context:component-scan base-package="com.ssafy.controller" />
컴파일 시 web.xml > root-context.xml > servlet-context.xml 순으로 실행