802adb681a46001c1ed6e8bb434c180f

来自「尚学堂Java148班的spring的所有源码」· 代码 · 共 25 行

TXT
25
字号
<?xml version="1.0" encoding="UTF-8"?>

<!--
  - Application context definition for JPetStore's business layer.
  - Contains bean references to the transaction manager and to the DAOs in
  - dataAccessContext-local/jta.xml (see web.xml's "contextConfigLocation").
  -->
<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:tx="http://www.springframework.org/schema/tx"
	     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
  	
  	<bean id="userManager" class="com.bjsxt.spring.UserManagerImpl"/>
  	
  	<bean id="mySecurityManager" class="com.bjsxt.spring.MySecurityManagerImpl"/>
  	
	<aop:config>
		<aop:pointcut id="allAddMethod" expression="execution(* add*(..))"/>
	</aop:config>
	  	
</beans>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?