Spring IoC 注解

Spring IoC 提供了丰富的注解,可简化 Bean 的定义、依赖注入等操作。以下为你详细介绍一些常用注解及其使用方法:

1. 用于定义 Bean 的注解

  • @Component
    • 功能:这是一个通用注解,用于将类标记为 Spring 管理的 Bean 。它可以用在任何类上,Spring 会自动扫描带有该注解的类并将其注册到 IoC 容器中。
    • 示例
import org.springframework.stereotype.Component;

@Component
public class UserService {
    public void doSomething() {
        System.out.println("UserService is doing something.");
    }
}
  • @Service
    • 功能:通常用于标记业务逻辑层的类,它是 @Component 的一个特化注解,本质上和 @Component 功能相同,但使用 @Service 能让代码更具可读性,明确表示该类是服务层组件。
    • 示例
import org.springframework.stereotype.Service;

@Service
public class OrderService {
    public void processOrder() {
        System.out.println("Processing order...");
    }
}
  • @Repository
    • 功能:主要用于标记数据访问层(DAO)的类,同样是 @Component 的特化注解,它还能将 DAO 层抛出的异常转换为 Spring 的数据访问异常体系。
    • 示例
import org.springframework.stereotype.Repository;

@Repository
public class UserRepository {
    public void saveUser() {
        System.out.println("Saving user...");
    }
}
  • @Controller
    • 功能:用于标记控制器层的类,是 @Component 的特化注解,主要用于 Spring MVC 框架中处理 HTTP 请求。
    • 示例
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class UserController {
    @GetMapping("/users")
    public String getUsers() {
        return "users";
    }
}
  • @Configuration
    • 功能:用于标记配置类,该类中可以包含多个 @Bean 注解的方法,用于定义和注册 Bean 。
    • 示例
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class AppConfig {
    @Bean
    public UserService userService() {
        return new UserService();
    }
}

2. 用于依赖注入的注解

  • @Autowired
    • 功能:可以用在构造函数、Setter 方法、字段上,用于自动注入依赖的 Bean 。默认按类型进行注入,如果存在多个相同类型的 Bean ,可以结合 @Qualifier 注解使用。
    • 示例
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

@Component
public class UserManager {
    private UserService userService;

    @Autowired
    public UserManager(UserService userService) {
        this.userService = userService;
    }

    public void manageUser() {
        userService.doSomething();
    }
}
  • @Qualifier
    • 功能:当存在多个相同类型的 Bean 时,使用 @Qualifier 注解指定要注入的 Bean 的名称。
    • 示例
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component;

@Component
public class PaymentProcessor {
    private PaymentService paymentService;

    @Autowired
    public PaymentProcessor(@Qualifier("creditCardPaymentService") PaymentService paymentService) {
        this.paymentService = paymentService;
    }
}
  • @Resource
    • 功能:这是 JSR - 250 标准的注解,默认按名称进行注入,如果没有指定名称,则按类型进行注入。
    • 示例
import javax.annotation.Resource;
import org.springframework.stereotype.Component;

@Component
public class ProductService {
    @Resource
    private ProductRepository productRepository;

    public void addProduct() {
        productRepository.saveProduct();
    }
}

3. 其他注解

  • @Scope
    • 功能:用于指定 Bean 的作用域,常见的作用域有 singleton(单例)、prototype(原型)等。
    • 示例
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

@Component
@Scope("prototype")
public class CartService {
    // 该 Bean 每次获取时都会创建一个新的实例
}
  • @Lazy
    • 功能:用于延迟加载 Bean ,当 Bean 被标记为 @Lazy 时,它不会在容器启动时立即创建,而是在第一次被使用时才创建。
    • 示例
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;

@Component
@Lazy
public class ExpensiveService {
    public ExpensiveService() {
        System.out.println("ExpensiveService is created.");
    }
}

4. 条件注解

  • @Conditional
    • 功能:根据自定义的条件来决定是否创建某个 Bean 。需要实现 Condition 接口来定义条件。
    • 示例
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Conditional;
import org.springframework.context.annotation.Configuration;

@Configuration
public class ConditionalConfig {
    @Bean
    @Conditional(MyCondition.class)
    public MyBean myBean() {
        return new MyBean();
    }
}
import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;

public class MyCondition implements Condition {
    @Override
    public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
        // 自定义条件判断逻辑
        return true; 
    }
}

除了之前提到的 Spring IoC 注解,下面为你详细介绍更多相关注解及其用途:

1. 定义 Bean 相关注解

  • @Named
    • 功能:这是 JSR - 330 标准中的注解,和 @Component 类似,可将类标记为 Spring 管理的 Bean。在使用 JSR - 330 标准的依赖注入时较为常用。
    • 示例
import javax.inject.Named;

@Named
public class LogService {
    public void logMessage(String message) {
        System.out.println("Logging: " + message);
    }
}

2. 依赖注入相关注解

  • @Inject
    • 功能:同样是 JSR - 330 标准的注解,用于执行依赖注入,和 @Autowired 功能类似,默认按类型注入。
    • 示例
import javax.inject.Inject;
import org.springframework.stereotype.Component;

@Component
public class ReportService {
    private LogService logService;

    @Inject
    public ReportService(LogService logService) {
        this.logService = logService;
    }
}
  • @Value
    • 功能:用于将属性值注入到 Bean 的字段、方法参数或者构造函数参数中。可以注入普通字符串、配置文件中的属性值等。
    • 示例
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class AppConfigProperties {
    @Value("${app.name}")
    private String appName;

    public String getAppName() {
        return appName;
    }
}

3. Bean 生命周期相关注解

  • @PostConstruct
    • 功能:该注解用于标记一个方法,此方法会在 Bean 实例化之后、依赖注入完成之后立即执行,常用于进行一些初始化操作。
    • 示例
import javax.annotation.PostConstruct;
import org.springframework.stereotype.Component;

@Component
public class DatabaseInitializer {
    @PostConstruct
    public void init() {
        System.out.println("Initializing database...");
    }
}
  • @PreDestroy
    • 功能:用于标记一个方法,该方法会在 Bean 被销毁之前执行,常用于释放资源等操作。
    • 示例
import javax.annotation.PreDestroy;
import org.springframework.stereotype.Component;

@Component
public class ConnectionManager {
    @PreDestroy
    public void closeConnections() {
        System.out.println("Closing database connections...");
    }
}

4. 配置类相关注解

  • @Import
    • 功能:在配置类中使用,用于导入其他配置类,将其他配置类中的 Bean 定义合并到当前配置类中。
    • 示例
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

@Configuration
@Import({AppConfig.class, DatabaseConfig.class})
public class RootConfig {
    // 合并 AppConfig 和 DatabaseConfig 中的 Bean 定义
}
  • @ImportResource
    • 功能:用于在 Java 配置类中引入 XML 配置文件,将 XML 配置文件中的 Bean 定义引入到 Spring 容器中。
    • 示例
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;

@Configuration
@ImportResource("classpath:applicationContext.xml")
public class MixedConfig {
    // 引入 XML 配置文件中的 Bean 定义
}

5. 条件注解

  • @ConditionalOnClass
    • 功能:只有当指定的类存在于类路径中时,才会创建对应的 Bean。
    • 示例
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class MyConfig {
    @Bean
    @ConditionalOnClass(name = "com.example.SomeClass")
    public MyBean myBean() {
        return new MyBean();
    }
}
  • @ConditionalOnMissingClass
    • 功能:当指定的类不存在于类路径中时,才会创建对应的 Bean。
    • 示例
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingClass;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class AnotherConfig {
    @Bean
    @ConditionalOnMissingClass("com.example.OtherClass")
    public AnotherBean anotherBean() {
        return new AnotherBean();
    }
}
  • @ConditionalOnProperty
    • 功能:根据配置文件中的属性值来决定是否创建 Bean。可以指定属性名、属性值等条件。
    • 示例
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class FeatureConfig {
    @Bean
    @ConditionalOnProperty(name = "feature.enabled", havingValue = "true")
    public FeatureService featureService() {
        return new FeatureService();
    }
}
  • @ConditionalOnMissingBean
    • 功能:当容器中不存在指定类型的 Bean 时,才会创建对应的 Bean。
    • 示例
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class DefaultConfig {
    @Bean
    @ConditionalOnMissingBean(MyService.class)
    public MyService defaultMyService() {
        return new DefaultMyService();
    }
}

6. 自动配置相关注解

  • @EnableAutoConfiguration
    • 功能:启用 Spring Boot 的自动配置功能,Spring Boot 会根据类路径中的依赖和配置文件自动配置 Spring 应用。
    • 示例
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Configuration;

@Configuration
@EnableAutoConfiguration
public class Application {
    public static void main(String[] args) {
        // 启动 Spring Boot 应用
    }
}
  • @AutoConfigureBefore@AutoConfigureAfter
    • 功能:用于指定自动配置类的加载顺序,@AutoConfigureBefore 表示当前自动配置类在指定的自动配置类之前加载,@AutoConfigureAfter 则相反。
    • 示例
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.context.annotation.Configuration;

@Configuration
@AutoConfigureAfter(DatabaseAutoConfiguration.class)
@ConditionalOnClass(SomeClass.class)
public class MyAutoConfiguration {
    // 配置逻辑
}

这些注解丰富了 Spring IoC 的功能,能帮助开发者更灵活、高效地构建和管理 Spring 应用。

全部评论

相关推荐

家庭背景:本人男,三线城市中产家庭,有个马上读初中的妹妹,家里人脉资源偏下学术背景:计科 本2上海top2学硕研一,研究方向是llm的一个冷门领域,虽然研究的人比较少,但是比较好想创新点和写文章(其实就是把在其他领域有用的技术迁移过来就行)。本科无科研经历,研一上投了2篇一作论文,研一下目前同步研究两个项目,目前无中稿。实习有一段对口的国企实习,做的是政府的项目。导师情况:实验室大导名气很大,不过我是底下小导的第一届硕士,转博的话也是第一届博士,目前无横向。导师不push人比较好,放研二下实习,大组硕博去向都很好。有一个硕士同门已经确定研二转博,目前申请跟我导师读博的竞争比较激烈。最近老师跟我说我可以考虑转个博,因为他观察下来觉得我还蛮适合读博的。但是我一直都是想硕士就业的,有以下几个理由:1、本人不婚,比较想尽快赚钱实现自己的愿望清单2、妹妹比我更聪明很多,我想供妹妹高中或者本科就出国念书(如果读博可能没法攒到那么多钱)3、我目前所有的规划都是基于三年毕业直接就业来设计的,包括课题的进度、实习的选择等4、相比于读研,本人更喜欢实习的生活。可能是由于国企实习正常上下班并且mentor很好,所以感觉实习的时候能量是向上的自身缺点:1、很容易内耗和瞎想,性格比较内向,感觉读博需要强大的内心2、本人数学能力中等,代码能力中等,因为研究主要是偏向CoT和端到端llm之类的,因此不需要我设计新模型或者进行复杂的推理证明(感觉自己在这些方面能力有限,比较偏工程型而不是学术型)3、从来没有想过读博,因此对于读博所需要的条件(包括精神和学术),面临的挑战与毕业的要求我都不懂自身或者读博优点:1、本人极度念家,家乡没有互联网公司,因此硕士就业只能在江浙沪。但是博士毕业完可以拿家乡一本学校的教职2、读博期间可以确保出国交换至少一学期,进入大厂实习至少半年(留学是我一直梦寐以求的事情)3、我从未自暴自弃或者妄自菲薄,而且压力越大或者事情越多,我做事的效率越高(就是尽管我会内耗想东想西,但是我的手不会停)4、目前有稳定的教培兼职,并已经初步攒够fy money#牛客AI配图神器##博士##读博士还是工作##硕士#
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

更多
牛客网
牛客企业服务