快速入门创建 [label color="red"]SpringMvcConfig[/label]作为Spring的容器, 并扫描其他bean@Configuration
@ComponentScan("com.itheima.controll...
阅读全文...
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 控...
阅读全文...
阅读全文...
Spring依赖注入
setter注入[note type="info modern"]要在类里提供dao对象的入口(一个set方法), 需要的类不要自己手动new留一个空位[/note]public class BookServiceImpl implements Book...
阅读全文...
阅读全文...