과제2

안예진·2021년 4월 28일
0

spring

목록 보기
2/5
  1. spring legacy project 생성
  2. 프로젝트 우클릭 > properties > java build path > livraries > jre 1.8로 설정
  3. pom.xml에서 java version/ springframwork version 설정
    jdbc관련 dependency 설정
  4. web.xml에서 utf-8 filter 설정 추가
<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>
  1. root-context.xml에서 dataSource / context scan 설정 추가
    ==> web과 관련없는 것들 관리 & DI, AOP, 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&amp;useUniCode=yes&amp;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" />
  1. src/main/java에서 controller/service/dao 파일 생성 & annotation 달고 시작

컴파일 시 web.xml > root-context.xml > servlet-context.xml 순으로 실행

profile
에국은 에구구구...

0개의 댓글

관련 채용 정보