使用Spring纯注解方式如何实现。
时间: 2024-02-03 22:12:52 浏览: 77
使用Spring纯注解方式实现,需要遵循以下步骤:
1. 在类上使用注解 @Component 或其派生注解(如@Service、@Repository等),标识该类为Spring容器的组件。
2. 如果该组件需要依赖其他组件,可以使用注解 @Autowired 或 @Resource 进行注入。
3. 如果需要配置组件的属性,可以使用注解 @Value 进行赋值。
4. 如果需要在启动时执行一些操作,可以使用注解 @PostConstruct 进行初始化。
下面是一个简单的示例代码:
```java
@Component
public class MyService {
@Autowired
private MyDao myDao;
@Value("${myService.name}")
private String name;
@PostConstruct
public void init() {
System.out.println("MyService initialized");
}
public void doSomething() {
System.out.println("Hello, " + name);
myDao.doSomething();
}
}
@Component
public class MyDao {
public void doSomething() {
System.out.println("MyDao do something");
}
}
@Configuration
@PropertySource("classpath:application.properties")
public class AppConfig {
@Bean
public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
return new PropertySourcesPlaceholderConfigurer();
}
}
public class Main {
public static void main(String[] args) {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(AppConfig.class);
MyService myService = context.getBean(MyService.class);
myService.doSomething();
}
}
```
这个示例中,我们创建了两个组件 MyService 和 MyDao,MyService 依赖 MyDao,并且需要从属性配置文件中读取 name 属性。我们使用注解 @Autowired 和 @Value 进行依赖注入和属性赋值,使用注解 @PostConstruct 进行初始化。我们还创建了一个配置类 AppConfig,用于读取属性配置文件。最后在 main 方法中创建 AnnotationConfigApplicationContext 实例,并通过 context.getBean 获取 MyService 组件实例,并调用其 doSomething 方法。
阅读全文