Git常用本地仓库命令git status 查看文件状态
git add <file> 添加文件到暂存区
git reset <file> ...
阅读全文...
Spring管理事务
快速入门SpringConfig开启事务管理@EnableTransactionManagement在JdbcConfig加入平台事务管理器[note type="info modern"]事务管理器和Mybatis需要用同一个数据源 所以加在JdbcC...
阅读全文...
阅读全文...
Spring AOP
快速入门首先创建一个aop包, 在里面再创建一个类放通知然后就是写 [label color="red"]切入点表达式[/label] , 具体看我下面的操作就行了~ [label color="red"]@Component[/label] 表示这个类...
阅读全文...
阅读全文...
Spring注解开发
定义Bean@Component 泛指组件,当组件不好归类时,可使用这个注解 @Repository 对应 DAO 层的 Bean 定义 @Service 对应 Service 层的 Bean 定义 @Controller 对应 Spring MVC 控...
阅读全文...
阅读全文...