Christmas Pikachu 스프링 컨테니어 (application.xml) 설정 (트랜잭션, 템플릿패턴)
개발일지/스프링

스프링 컨테니어 (application.xml) 설정 (트랜잭션, 템플릿패턴)

ZI_CO 2024. 3. 5.

 ※ 주의 ※ 주석은 사용시 제거를 해주는게 좋다 주석이 존재시 가끔 에러를 일으킬수 있기 때문이다.

<?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:aop="http://www.springframework.org/schema/aop"
   xmlns:context="http://www.springframework.org/schema/context"
   xmlns:tx="http://www.springframework.org/schema/tx"
   xsi:schemaLocation= "http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/context
      http://www.springframework.org/schema/context/spring-context-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/tx
      http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">
	
	<!-- com.spring.biz 패키지 내부의 컴포넌트를 스캔하여 빈으로 등록 -->
	<context:component-scan base-package="com.spring.biz" /> 

	<!-- AspectJ 자동 프록시 생성 -->
	<aop:aspectj-autoproxy /> 
	
	<!-- 데이터베이스 연결 정보 설정 -->
	<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
		<property name="driverClassName" value="com.mysql.cj.jdbc.Driver" />
		<property name="url" value="jdbc:mysql://localhost:3306/test" />
		<property name="username" value="root" />
		<property name="password" value="1234" />
	</bean>
	
	<!-- JdbcTemplate 빈 설정 -->
	<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
		<property name="dataSource" ref="dataSource" />
	</bean>
	
	<!-- 트랜잭션 관리자 설정 -->
	<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="dataSource" />
	</bean>
	
	<!-- 트랜잭션 설정 -->
	<tx:advice id="txAdvice" transaction-manager="txManager">
		<tx:attributes>
			<!-- 모든 메소드에 대해서 트랜잭션 적용 -->
			<tx:method name="*" />
			<!-- select로 시작하는 메소드에 대해서는 읽기 전용 트랜잭션 적용 -->
			<tx:method name="select*" read-only="true" />
		</tx:attributes>
	</tx:advice>
	
	<!-- AOP 설정 -->
	<aop:config>
		<!-- 포인트컷 설정: com.spring.biz 패키지 내부의 *Impl로 끝나는 모든 메소드 -->
		<aop:pointcut id="aPointcut" expression="execution(* com.spring.biz..*Impl.*(..))" />
		
		<!-- 어드바이저 설정: aPointcut에 대해 txAdvice를 적용 -->
		<aop:advisor pointcut-ref="aPointcut" advice-ref="txAdvice" />
	</aop:config>
</beans>

 

댓글