1
我使用的是不直接由我的@Controller
調用的類,當我嘗試使用該類中的@Autowired
propeprty時,定義爲@Service
,屬性爲null
。但@Autowired
具有相同的標記將在@Controller
內工作。是否可以在@Service中使用Spring 3 @Autowired註釋?
示例代碼:
@Service
public class UsernameValidator implements Validator {
@Autowired private UserDao userDao;
// code here when used, userDao is always null
}