你好,我有一门课,我想测试。此类有一个自动装配的 DAO 对象,该对象已在@PostConstruct
方法中使用,但我想使用模拟而不是真实对象有没有办法。这是一个例子:
@Autowired
PersonDao personDao;
//Constructor
public Person()
{
//Do stuff
}
@PostConstruct
void init()
{
//I need it to be a mock
personDao.add(new Person());
}