发布时间:2012-12-12 15:56:34
<beans> <!-- 构造函数注入(了解) --> <!-- bean id="empService" class="com.tfsoftware.www.serviceImp.EmployeeServiceImpl"> <constructor-arg ref = "empDao"></constructor-arg&g......【阅读全文】
发布时间:2012-12-12 15:55:37
第一种 静态方法 applicationContext.xml 指定生产类的方法 ( static) <b......【阅读全文】
发布时间:2012-12-12 15:54:03
一:用连接池实现(配置一) <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName"> <value>com.mysql.jdbc.Driver</value> </property>  ......【阅读全文】
发布时间:2012-12-12 15:51:17
/** * 切面 */@Aspect // 在切面类 前public class TestAspectJ { /** * 切入点 */ @Pointcut ("execution(* com.software.www.daoImp.*.get*(..))") // get 开头的方法 private void anyOldTransfer(){} ......【阅读全文】
发布时间:2012-12-12 15:48:59
spring自己的实现aop的几种方式 ///========================方式一(根据通知类型的不同常用的有四种情况before,after,around,throws)================================= 第一种情况: java代码org.springframework.aop.MethodBeforeAdvice /////////////////////////////......【阅读全文】