本文主要是介绍Day12-1 Spring复习,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Spring复习
Spring框架需引入org.springframework的以下依赖包:
1.spring-context依赖包的作用是处理web.xml定义的ioc.xml(web程序)或通过ClassPathXmlApplicationContext/FileSystemXmlApplicationContext处理ioc.xml(java程序),支持@Controller/@Component/@Repository/@Service,支持多线程@Async/@Scheduled;
<bean id ="taskExecutor" class ="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor" >...</bean>
<task:annotation-driven executor="taskExecutor" />
2.spring-webmvc依赖包是对servlet、web开发的封装和简化,支持@GetMapping/@ResponseBody等注解(servlet-context.xml);
<annotation-driven />
3.spring-test依赖包和junit基础包,spring-test主要处理spring管理的对象,junit实现测试类;
4.spring-jdbc依赖包和mysql-connector-java、c3p0基础包,spring-jdbc的JdbcTemplate类封装了DAO层的CRUD操作,仍然需要mysql连接驱动和c3p0管理连接池,也可以自定义一个DbUtilsTemplate类交给ioc.xml管理,替代spring-jdbc的工作;
重点:
1.spring对象管理的两种方式:bean定义;(包扫描+配置集成+注解)
2.java程序创建ApplicationContext类对象context加载配置的两种方式:new ClassPathXmlApplicationContext("ioc.xml");new FileSystemXmlApplicationContext()
3.JUnit注解加载配置的两种方式:@ContextConfiguration(locations= {"file:src/main/webapp/WEB-INF/spring/spring-thread.xml","classpath:ioc.xml"})
4.web程序加载配置文件的两种方式:<servlet>标签和<context-param>标签内部<param-value>/WEB-INF/spring/root-context.xml</param-value>
5.spring对象使用的两种方式:@Autowired/@Resource自动注入;代码context.getBean(User.class)/context.getBean("user")
6.spring设计模式思想:无论类多么复杂,IOC可以实现对外只暴露类的名称
这篇关于Day12-1 Spring复习的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!