在这个方法中,需要使用一个UserProfileService,一开始我自己在方法中new了一个,但是报错,后来使用Spring注入:
@Autowired
private UserProfileService userProfileService;
解决了.
public String regularExpression(String content,String path) {
// 判断所@的用户是否存在
//UserProfileService userProfileService = new UserProfileService();
boolean temp = userProfileService.isUserExist(owner);
/
return sbuf.toString();
}
后来分析应该是在UserProfileService类中,UserProfileDao也是注入的,自己新建的并没有,所以会报错,在UserProfileService中,把用到Dao的地方注释掉了就不报错了.