I T H

[프로젝트] 3. Spring Framework 설정 및 프로젝트 설정 (Week 1) 본문

Spring ArtGallery Project

[프로젝트] 3. Spring Framework 설정 및 프로젝트 설정 (Week 1)

thdev 2024. 1. 23. 10:36

메이븐 프로젝트의 기본 폴더 구성 확인 및 기본 설정이 끝난 후

스프링 프레임워크 사용을 위한 xml 설정을 진행.

더불어 스프링시큐리티 (로그인 설정을 위함) 및 JDBCTemplate을 활용한 데이터베이스 접속 등을 설정할 예정.

 

1. web.xml 설정

<?xml version="1.0" encoding="UTF-8"?>
<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_3_1.xsd"
	id="art" version="3.1">
	<display-name>art</display-name>

	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>/WEB-INF/spring/applicationContext*.xml</param-value>
	</context-param>
	<filter>
		<filter-name>springSecurityFilterChain</filter-name>
		<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>springSecurityFilterChain</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	
	<filter>
		<filter-name>encoding</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>
	<filter-mapping>
		<filter-name>encoding</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	
	<servlet>
		<servlet-name>dispatcher</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>
			/WEB-INF/config/dispatcher-servlet.xml
	  		</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
		<async-supported>true</async-supported>
	</servlet>
	<servlet-mapping>
		<servlet-name>dispatcher</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>
	
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
	<listener>
		<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
	</listener>
	
	<error-page>
		<error-code>404</error-code>
		<location>/notFindPage</location>
	</error-page>
	
	<session-config>
		<session-timeout>60</session-timeout>
	</session-config>
	
	<welcome-file-list>
		<welcome-file>index</welcome-file>
	</welcome-file-list>
	
	<context-param>
		<param-name>spring.profiles.active</param-name>
		<param-value>local</param-value>
	</context-param>
</web-app>

 

- 스프링 프레임워크 설정용 xml 파일이 적용될 수 있도록 Context Param 설정을 진행함.

- dispatcher-servlet.xml 파일 경로 지정

 

2. dispatcher-servlet.xml 파일 설정

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns="http://www.springframework.org/schema/beans"
	xmlns:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:websocket="http://www.springframework.org/schema/websocket"
	xsi:schemaLocation="http://www.springframework.org/schema/mvc
						http://www.springframework.org/schema/mvc/spring-mvc.xsd    http://www.springframework.org/schema/aop
						http://www.springframework.org/schema/aop/spring-aop.xsd    http://www.springframework.org/schema/beans
						http://www.springframework.org/schema/beans/spring-beans.xsd    http://www.springframework.org/schema/context
						http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/websocket
     					http://www.springframework.org/schema/websocket/spring-websocket-4.1.xsd">

	<mvc:annotation-driven />
	<mvc:resources location="/resources/" mapping="/resources/**"/>
	
	<context:component-scan base-package="kr.co.art" use-default-filters="false" name-generator="kr.co.art.sys.framework.CustomBeanNameGenerator">
		<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
		<context:include-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice" />
	</context:component-scan>
	
	<!-- cache 설정 -->
	<mvc:interceptors>
		<bean id="webContentInterceptor" class="org.springframework.web.servlet.mvc.WebContentInterceptor">
			<property name="cacheSeconds" value="0"/>
			<property name="useExpiresHeader" value="true"/>
			<property name="useCacheControlHeader" value="true"/>
			<property name="useCacheControlNoStore" value="true"/>
		</bean>
	</mvc:interceptors>
	
	<!-- locale 설정 -->
    <mvc:interceptors>
        <bean id="localeChangeInterceptor" class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
                <property name="paramName" value="lang">
                </property>
        </bean>
    </mvc:interceptors>
    
	<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
		<property name="prefix" value="/WEB-INF/jsp/" />
		<property name="suffix" value=".jsp" />
		<property name="order" value="2" />
	</bean>
	
	<bean class="org.springframework.web.servlet.view.BeanNameViewResolver">
		<property name="order" value="1" />
	</bean>
	
</beans>

 

 

3. 스프링 프레임워크 설정 파일 application-*.xml 파일 설정

[ applicationContext-common.xml ] : 공통 설정용

<?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:p="http://www.springframework.org/schema/p" 
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
				http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
				http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd">

	<context:component-scan base-package="co.kr.art" use-default-filters="false">
		<context:include-filter type="annotation" expression="org.springframework.stereotype.Service" />
	</context:component-scan>
	
	<!-- profile 관련 태그는 가장 마지막에 위치해야 함 -->
	<beans profile="local">
		<util:properties id="app" location="/WEB-INF/property/app_local.properties" />
	</beans>
	<beans profile="prod">
		<util:properties id="app" location="/WEB-INF/property/app_prod.properties" />
	</beans>

</beans>

 

 

[ applicationContext-dao.xml ] : 데이터베이스 접속 정보 설정용

<?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:tx="http://www.springframework.org/schema/tx"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:p="http://www.springframework.org/schema/p"
	xmlns:jee="http://www.springframework.org/schema/jee"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.2.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">


	<context:component-scan base-package="kr.co.art" use-default-filters="false">
		<context:include-filter type="annotation" expression="org.springframework.stereotype.Repository" />
	</context:component-scan>	

	<bean id="transactionManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager" 
		p:dataSource-ref="dataSource" />
		
	<tx:advice id="txAdvice" transaction-manager="transactionManager">
		<tx:attributes>
			<tx:method name="find*" read-only="true" />
			<tx:method name="get*" propagation="REQUIRED" />
			<tx:method name="*" propagation="REQUIRED" />
		</tx:attributes>
	</tx:advice>
 
	<aop:config>
		<aop:advisor advice-ref="txAdvice"
			pointcut="execution(* kr.co.art.biz..*ServiceImpl.*(..))" />
	</aop:config>
	
	<!-- mybatis -->
	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<property name="dataSource" ref="dataSource"></property>
		<property name="typeAliasesPackage" value="kr.co.art.biz"></property>
		<property name="configLocation" value="/WEB-INF/mybatis/mybatis-config.xml"></property>
		<property name="mapperLocations" value="classpath*:kr/co/art/biz/**/persistence/*.xml"></property>
	</bean>
	
	<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate" destroy-method="clearCache">
		<constructor-arg index="0" ref="sqlSessionFactory"></constructor-arg>
	</bean>
	
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<property name="basePackage" value="kr.co.art.biz.**.persistence"></property>
		<property name="sqlSessionTemplateBeanName" value="sqlSession"></property>
	</bean>
	
	<!-- dbcp -->
	<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
		<property name="driverClassName" value="#{app['db.driverClassName']}" />
		<property name="url" value="#{app['db.url']}" />
		<property name="username" value="#{app['db.username']}" />
		<property name="password" value="#{app['db.password']}" />
		<property name="validationQuery" value="SELECT 1" />
		<property name="testOnBorrow" value="true" />
	</bean>
	
	<!-- common dao -->
	<bean id="commonDao" class="kr.co.art.sys.dao.CommonDaoImpl">
		<property name="dataSource" ref="dataSource"></property>
	</bean>
		
</beans>

 

[ applicationContext-security.xml ] : 스프링 시큐리티 정보 설정용

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/security"
	xmlns:beans="http://www.springframework.org/schema/beans" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
      http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd">
	
	
	<context:component-scan base-package="kr.co.art" />

	<http pattern="/resources/**" security="none"></http>
	
	<http auto-config="true" use-expressions="true">
		<csrf disabled="true"/>

		<intercept-url pattern="/" access="permitAll" />
	 	
	 	<!-- 권한 에러 시 에러페이지로 이동 -->
	 	<access-denied-handler error-page="/notAccessPage" />
	 	
	 	<!-- 로그인 페이지 및 성공 유무 핸들러 처리 -->
	 	<form-login login-page="/login" 
	 		authentication-success-handler-ref="customAuthenticationSuccessHandler"
	 		authentication-failure-handler-ref="customAuthenticationFailureHandler" />
	 	
	 	<!-- 로그아웃 처리 -->
	 	<logout logout-success-url="/" logout-url="/logout" invalidate-session="true"/>
	 	
	 	<session-management invalid-session-url="/login">
	        <concurrency-control max-sessions="1" error-if-maximum-exceeded="true" />
	    </session-management>
	</http>
	
	<!-- 사용자 인증 성공 시 handler -->
	<beans:bean id="customAuthenticationSuccessHandler" class="kr.co.art.sys.security.authentication.CustomAuthenticationSuccessHandler">
	</beans:bean>	
	
	<!-- 사용자 인증 실패 시 handler -->
	<beans:bean id="customAuthenticationFailureHandler" class="kr.co.art.sys.security.authentication.CustomAuthenticationFailureHandler">
	</beans:bean>	
	
	<!-- 사용자 인증 provider -->
	<beans:bean id="customAuthenticationProvider" class="kr.co.art.sys.security.authentication.CustomAuthenticationProvider">
	</beans:bean>
	
	<!--  패스워드 인코딩 정보 -->
	<beans:bean id="passwordEncoder" class="org.springframework.security.crypto.password.StandardPasswordEncoder">
	</beans:bean>
	
	<!-- 시큐리티 프로바이더 설정 (커스텀 로그인) -->
	<authentication-manager>
        <authentication-provider ref="customAuthenticationProvider" />
    </authentication-manager>
	
</beans:beans>

 

 

여기까지 진행한 상황의 프로젝트 폴더 구성은 아래와 같음.

 

 

설정파일이 추가된 프로젝트 현황