Spring 使用注解装配Bean

简介:

Spring可以使用xml配置文件来装配bean,也可以使用注解来装配Bean

1.在上一篇文章的基础上在com.springtest包中新建Tire类,源码为:

package com.springtest;
 
public class Tire {
         privatedouble price;
         privateString brand;
 
         publicString getBrand() {
                   returnbrand;
         }
 
         publicvoid setBrand(String brand) {
                   this.brand= brand;
         }
 
         publicdouble getPrice() {
                   returnprice;
         }
 
         publicvoid setPrice(double price) {
                   this.price= price;
         }
}


2.新建Car类,源码为

package com.springtest;
 
import javax.annotation.Resource;
 
importorg.springframework.beans.factory.annotation.Autowired;
importorg.springframework.beans.factory.annotation.Value;
 
class Car {
         @Autowired
         privateTire tire;
        
         @Value("8000")
         privatedouble distance;
        
         privatePerson owner;
         publicCar(){}
         publicCar (Tire tire,double distance,Person owner){
                   this.tire= tire;
                   this.distance= distance;
                   this.owner= owner;
         }
//      publicTire getTire() {
//               returntire;
//      }
        
//      @Autowired
//      publicvoid setTire(Tire tire) {
//               this.tire= tire;
//      }
         publicdouble getDistance() {
                   returndistance;
         }
         publicvoid setDistance(double distance) {
                   this.distance= distance;
         }
         publicPerson getOwner() {
                   returnowner;
         }
        
         @Autowired
         publicvoid setOwner(Person owner) {
                   this.owner= owner;
         }
        
         publicvoid display(){
                   Stringmessage = "this car's tire is"+this.tire.getBrand()+";it'sdistance is"+this.distance+";it's owner is "+this.owner.getName();
                   System.out.print(message);
         }
}
 


3.在src目录下新建springAnnotation.xml配置文件,源码为:

<?xml version="1.0"encoding="UTF-8"?>
 
<beansxmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:context="http://www.springframework.org/schema/context"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
             http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
             http://www.springframework.org/schema/context
             http://www.springframework.org/schema/context/spring-context-4.2.xsd
             ">
 
         <!--使用基于注解的方法自动装配 -->
         <context:annotation-config/>
         <!--通过属性注入的方式 -->
  <bean id="tire" class="com.springtest.Tire">
      <property name="price" value="1000"/>
      <property name="brand" value="长城"></property>
  </bean>
 
         <!--通过构造器注入 -->
         <beanid="person" class="com.springtest.Person">
      <constructor-arg value="jade yoon"/>
      <constructor-arg value="25"/>
  </bean>
  
  <!-- 注入list -->
  <bean id="car" class = "com.springtest.Car">
               <property name ="distance" value="10000000" />
  </bean>
</beans>


4.MainApp文件的源码改为:

package com.springtest;
 
importorg.springframework.context.ApplicationContext;
importorg.springframework.context.support.ClassPathXmlApplicationContext;
 
public class MainApp {
 
         publicstatic void main(String[] args) {
//               //TODO Auto-generated method stub
//               ApplicationContextctx = new ClassPathXmlApplicationContext("bean.xml");
//              
//               Personperson1 = (Person)ctx.getBean("person");
//               person1.sayHello();
//              
//               Studentstudent1 = (Student)ctx.getBean("student");
//               student1.display();
                  
                   //TODO Auto-generated method stub
                   ApplicationContextctx = new ClassPathXmlApplicationContext("springAnnotation.xml");
                    
                   CarpCar = (Car)ctx.getBean("car");
                   pCar.display();
                  
         }
 
}


5.运行程序

相关文章
|
8月前
|
XML 安全 Java
使用 Spring 的 @Aspect 和 @Pointcut 注解简化面向方面的编程 (AOP)
面向方面编程(AOP)通过分离横切关注点,如日志、安全和事务,提升代码模块化与可维护性。Spring 提供了对 AOP 的强大支持,核心注解 `@Aspect` 和 `@Pointcut` 使得定义切面与切入点变得简洁直观。`@Aspect` 标记切面类,集中处理通用逻辑;`@Pointcut` 则通过表达式定义通知的应用位置,提高代码可读性与复用性。二者结合,使开发者能清晰划分业务逻辑与辅助功能,简化维护并提升系统灵活性。Spring AOP 借助代理机制实现运行时织入,与 Spring 容器无缝集成,支持依赖注入与声明式配置,是构建清晰、高内聚应用的理想选择。
766 0
|
8月前
|
缓存 监控 Java
SpringBoot @Scheduled 注解详解
使用`@Scheduled`注解实现方法周期性执行,支持固定间隔、延迟或Cron表达式触发,基于Spring Task,适用于日志清理、数据同步等定时任务场景。需启用`@EnableScheduling`,注意线程阻塞与分布式重复问题,推荐结合`@Async`异步处理,提升任务调度效率。
1247 128
|
8月前
|
Java 测试技术 API
将 Spring 的 @Embedded 和 @Embeddable 注解与 JPA 结合使用的指南
Spring的@Embedded和@Embeddable注解简化了JPA中复杂对象的管理,允许将对象直接嵌入实体,减少冗余表与连接操作,提升数据库设计效率。本文详解其用法、优势及适用场景。
433 126
|
9月前
|
XML JSON Java
Spring框架中常见注解的使用规则与最佳实践
本文介绍了Spring框架中常见注解的使用规则与最佳实践,重点对比了URL参数与表单参数的区别,并详细说明了@RequestParam、@PathVariable、@RequestBody等注解的应用场景。同时通过表格和案例分析,帮助开发者正确选择参数绑定方式,避免常见误区,提升代码的可读性与安全性。
|
8月前
|
Java 测试技术 数据库
使用Spring的@Retryable注解进行自动重试
在现代软件开发中,容错性和弹性至关重要。Spring框架提供的`@Retryable`注解为处理瞬时故障提供了一种声明式、可配置的重试机制,使开发者能够以简洁的方式增强应用的自我恢复能力。本文深入解析了`@Retryable`的使用方法及其参数配置,并结合`@Recover`实现失败回退策略,帮助构建更健壮、可靠的应用程序。
930 1
使用Spring的@Retryable注解进行自动重试
|
7月前
|
XML Java 应用服务中间件
【SpringBoot(一)】Spring的认知、容器功能讲解与自动装配原理的入门,带你熟悉Springboot中基本的注解使用
SpringBoot专栏开篇第一章,讲述认识SpringBoot、Bean容器功能的讲解、自动装配原理的入门,还有其他常用的Springboot注解!如果想要了解SpringBoot,那么就进来看看吧!
705 2
|
8月前
|
XML Java 数据格式
常用SpringBoot注解汇总与用法说明
这些注解的使用和组合是Spring Boot快速开发和微服务实现的基础,通过它们,可以有效地指导Spring容器进行类发现、自动装配、配置、代理和管理等核心功能。开发者应当根据项目实际需求,运用这些注解来优化代码结构和服务逻辑。
523 12
|
8月前
|
传感器 Java 数据库
探索Spring Boot的@Conditional注解的上下文配置
Spring Boot 的 `@Conditional` 注解可根据不同条件动态控制 Bean 的加载,提升应用的灵活性与可配置性。本文深入解析其用法与优势,并结合实例展示如何通过自定义条件类实现环境适配的智能配置。
428 0
探索Spring Boot的@Conditional注解的上下文配置
|
8月前
|
智能设计 Java 测试技术
Spring中最大化@Lazy注解,实现资源高效利用
本文深入探讨了 Spring 框架中的 `@Lazy` 注解,介绍了其在资源管理和性能优化中的作用。通过延迟初始化 Bean,`@Lazy` 可显著提升应用启动速度,合理利用系统资源,并增强对 Bean 生命周期的控制。文章还分析了 `@Lazy` 的工作机制、使用场景、最佳实践以及常见陷阱与解决方案,帮助开发者更高效地构建可扩展、高性能的 Spring 应用程序。
326 0
Spring中最大化@Lazy注解,实现资源高效利用