飞道的博客

Spring-IOC容器中的常用注解与使用方法

299人阅读  评论(0)
 

Spring-IOC容器中的常用注解与使用方法

Spring是什么?

体系结构

引入Jar包

导入约束 

常见注解

用于创建对象

用于注入数据

用于改变作用范围

和生命周期相关(了解)

Spring5

Spring整合Junit 

从IOC容器中获取对象


Spring是什么?

Spring是一个轻量级Java开发框架,最早有Rod Johnson创建,目的是为了解决企业级应用开发的业务逻辑层和其他各层的耦合问题。它是一个分层的JavaSE/JavaEE full-stack(一站式)轻量级开源框架,为开发Java应用程序提供全面的基础架构支持。Spring负责基础架构,因此Java开发者可以专注于应用程序的开发。

体系结构

核心容器(Core Container):Spring的核心容器是其他模块建立的基础,有Spring-core、Spring-beans、Spring-context、Spring-context-support和Spring-expression(String表达式语言)等模块组成

数据访问/集成(Data Access)层:数据访问/集成层由JDBC、ORM、OXM、JMS和事务模块组成。

Web层:Web层由Spring-web、Spring-webmvc、Spring-websocket和Portlet模块组成。

AOP(Aspect Oriented Programming)模块:提供了一个符合AOP要求的面向切面的编程实现,允许定义方法拦截器和切入点,将代码按照功能进行分离,以便干净地解耦。

植入(Instrumentation)模块:提供了类植入(Instrumentation)支持和类加载器的实现,可以在特定的应用服务器中使用。

消息传输(Messaging):Spring4.0以后新增了消息(Spring-messaging)模块,该模块提供了对消息传递体系结构和协议的支持。

测试(Test)模块:Spring-test模块支持使用JUnit或TestNG对Spring组件进行单元测试和集成测试。

引入Jar包


  
  1. <dependencies>
  2. <!--spring的jar包 -->
  3. <dependency>
  4. <groupId>org.springframework </groupId>
  5. <artifactId>spring-context </artifactId>
  6. <version>5.0.11.RELEASE </version>
  7. </dependency>
  8. <dependency>
  9. <groupId>org.springframework </groupId>
  10. <artifactId>spring-test </artifactId>
  11. <version>5.0.11.RELEASE </version>
  12. </dependency>
  13. <dependency>
  14. <groupId>org.springframework </groupId>
  15. <artifactId>spring-tx </artifactId>
  16. <version>5.0.11.RELEASE </version>
  17. </dependency>
  18. </dependencies>

导入约束 


  
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context= "http://www.springframework.org/schema/context"
  5. xsi:schemaLocation= "http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context
  8. http://www.springframework.org/schema/context/spring-context.xsd">
  9. <!--spring的约束 -->
  10. <!--把对象的创建交给Spring来管理 -->
  11. <!--获取容器中对象时使用id-->
  12. <!-- <bean id="accountServiceImpl" class="com.dynamic2.service.Impl.AccountServiceImpl"></bean>
  13. <bean id="accountDaoImpl" class="com.dynamic2.dao.Impl.AccountDaoImpl"></bean>-->
  14. <context:component-scan base-package="com.dynamic2"> </context:component-scan>
  15. </beans>

常见注解

用于创建对象

@Component:把资源让spring来管理。相当于xml中配置一个bean。value:指定bean的id,如果不指定value属性,默认bean的id是当前类的类名。首字母小写

@Controller:与@Component功能一样,一般用在表现层,便于分层

@Service:与@Component功能一样,一般用在业务层,便于分层

@Repository:与@Component功能一样,一般用于持久层,便于分层


  
  1. /**
  2. * @Author: Promsing
  3. * @Date: 2021/3/19 - 11:34
  4. * @Description: 用于创建对象
  5. * @version: 1.0
  6. * XML配置 <bean id="accountServiceImpl" class="com.dynamic2.service.Impl.AccountServiceImpl"></bean>
  7. */
  8. @Repository("accountDao ")
  9. public class AccountDaoImpl implements IAccountDao {
  10. ......
  11. }
  12. @Service("accountService")
  13. public class AccountServiceImpl implements IAccountService {
  14. ......
  15. }
  16. @Component("accountServiceImpl")
  17. @Scope("prototype") //多例
  18. public class AccountServiceImpl2 implements IAccountService {
  19. ......
  20. }

用于注入数据

@Autowired:自动按照类型注入。当使用注解注入属性时,set方法可以省略。它只能注入其他bean类型。当有多个类型匹配时。使用要注入的对象变量名称作为bean的id,在spring容器中查找,找到了注入成功,找不到就报错。

@Qualifier:在自动按照类型注入的基础上,再按照Bean的id注入。它在给字段注入时不能单独使用,必须和@Autowire一起使用;但是给方法参数注入时,可以单独使用。value属性是指定Bean的id

@Resource:直接按照Bean的id注入。它也只能注入其他Bean类型。name属性是指定Bean的id

@Value:注入基本数据类型和String类型数据


  
  1. /**
  2. * @Author: Promsing
  3. * @Date: 2021/3/19 - 11:34
  4. * @Description: 用于创建对象
  5. * @version: 1.0
  6. * XML配置 <bean id="accountServiceImpl" class="com.dynamic2.service.Impl.AccountServiceImpl"></bean>
  7. */
  8. @Component("accountServiceImpl")
  9. @Scope("prototype") //多例
  10. public class AccountServiceImpl implements IAccountService {
  11. //注入成员变量
  12. /* @Autowired 自动按照类型注入--寻找类型
  13. @Qualifier("accountDao2")*/ //寻找id
  14. //以上两个注解相加的作用等于这个
  15. @Resource(name = "accountDao2")
  16. private IAccountDao accountDao2;
  17. @Override
  18. public void saveAccount() {
  19. accountDao2.saveAccount();
  20. //System.out.println("service中的saveAccount执行了~~");
  21. }
  22. }

用于改变作用范围

@Scope:指定Bean的作用范围。value属性指定范围的值--singleton单例,prototype多例,request作用与web应用的请求范围,session作用与web应用的会话范围,global-session作用与集群环境中会话范围


  
  1. @Component("accountServiceImpl")
  2. @Scope("prototype") //多例
  3. public class AccountServiceImpl implements IAccountService {
  4. ......
  5. }

和生命周期相关(了解)

@PostConstruct:用于指定初始化方法

@PreDestroy:用于指定销毁方法

Spring5

@Configuration:用于指定当前类是一个spring配置类,当有容器时会从该类上加载注解。获取容器是使用AnnotationApplicationContext(有@Configuration注解的类.class)

@ComponentScan:用于指定spring在初始化容器时要扫描的包。作用和在spring的xml配置文件找那个的<context : component-sacn base-package="com.dynamic"/>

@Bean:该注解只用用在方法上,表明使用此方法创建一个对象,并且放入spring容器中

@Import:用于导入其他配置类,解耦合


  
  1. /**
  2. * @Author: Promsing
  3. * @Date: 2021/3/28 - 0:36
  4. * @Description: Spring配置类
  5. * @version: 1.0
  6. */
  7. @Configuration //指定当前类是一个配置类
  8. @ComponentScan("com.dynamic_transaction_anno") //用于指定spring在初始化容器时需要扫描的包
  9. @Import({JdbcConfig.class,TransactionConfig.class}) //导入其他配置类
  10. @EnableTransactionManagement //开启spring注解事务的支持
  11. public class SpringConfig {
  12. @Bean("jdbcTemplate")
  13. public JdbcTemplate createJdbcTemplate(DataSource ds){
  14. return new JdbcTemplate(ds);
  15. }
  16. @Bean("dataSource")
  17. public DataSource createDataSource(){
  18. DriverManagerDataSource dr= new DriverManagerDataSource();
  19. dr.setDriverClassName( "com.mysql.jdbc.Driver"); //com.mysql.jdbc.Driver
  20. dr.setUrl( "jdbc:mysql//localhost:330b/eesy");
  21. dr.setUsername( "root");
  22. dr.setPassword( "root");
  23. return dr;
  24. }
  25. }

Spring整合Junit 

@RunWith:替代原有的运行器

@ContextConfiguration:指定配置文件的位置


  
  1. @RunWith(SpringJUnit4ClassRunner.class) //替代原有运行器
  2. @ContextConfiguration(classes=SpringConfiguration.class) //指定配置类
  3. public class AccountServiceTest {
  4. @Test
  5. public void testFindAll(){
  6. //执行测试方法
  7. }
  8. }

从IOC容器中获取对象


  
  1. /**
  2. * @Author: Promsing
  3. * @Date: 2021/3/21 - 11:22
  4. * @Description: 单元测试
  5. * @version: 1.0
  6. */
  7. @RunWith(SpringJUnit4ClassRunner.class)
  8. @ContextConfiguration(classes=SpringConfiguration.class)
  9. public class AccountServiceTest {
  10. @Resource(name = "accountServiceImpl")
  11. private IAccountService accountService;
  12. @Test
  13. //从容器中获取对象
  14. public void test(){
  15. //一、获取容器
  16. //使用配置文件加载
  17. ApplicationContext ac= new ClassPathXmlApplicationContext( "bean3_1.xml");
  18. //使用配置类加载
  19. /// ApplicationContext ac=new AnnotationConfigApplicationContext(SpringConfiguration.class);
  20. //二、获取对象
  21. accountService=(IAccountService)ac.getBean( "accountServiceImpl",IAccountService.class);
  22. //三、执行方法
  23. List<Account> allAccounts = accountService.findAllAccount();
  24. for (Account allAccount : allAccounts) {
  25. System.out.println(allAccount);
  26. }
  27. }
  28. }

如果本篇博客对您有一定的帮助,大家记得留言+点赞+收藏哦。原创不易,转载请联系作者!


转载:https://blog.csdn.net/promsing/article/details/115554552
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场