@service类怎么配置
时间: 2023-05-30 10:07:50 浏览: 93
1. 在Spring配置文件中,先定义一个@Service注解,例如:
```
<context:annotation-config />
<context:component-scan base-package="com.example.service" />
```
2. 在@Service类上添加@Service注解,例如:
```
@Service
public class UserServiceImpl implements UserService {
// ...
}
```
3. 在@Autowired注解中注入其他的Bean,例如:
```
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserDao userDao;
// ...
}
```
4. 在其他类中使用@Service类,例如:
```
@Controller
public class UserController {
@Autowired
private UserService userService;
// ...
}
```
注意:@Service类需要被Spring管理,因此需要在配置文件中添加@ComponentScan注解来扫描@Service类的包路径,并且需要在配置文件中添加<context:annotation-config />来激活注解驱动。
阅读全文