2017年1月10日

spring-aop切入点配置

摘要: 例如: execution (* com.sample.service.impl..*.*(..)) 整个表达式可以分为五个部分: 1.execution() 表达式主题 2.第一个星号表示返回类型 3.包名 ..*-》后面跟两点 ,表示子包 4 *表示类名 5.最后一个*表示方法名 阅读全文

posted @ 2017-01-10 21:45 老邱2 阅读(107) 评论(0) 推荐(0) 编辑

mysql创建索引

摘要: alter table table_name index('列'); 阅读全文

posted @ 2017-01-10 21:31 老邱2 阅读(85) 评论(0) 推荐(0) 编辑

maven整理项目spring配置文件加载问题

摘要: 1,classpath:applicationContext.xml改为classpath*:applicationContext.xml 这么写也是一样的效果:classpath*:/applicationContext.xml 2,在applicationContext.xml引用其它的配置文件 阅读全文

posted @ 2017-01-10 19:44 老邱2 阅读(698) 评论(0) 推荐(0) 编辑

导航