Spring注入中出现的问题

在这个方法中,需要使用一个UserProfileService,一开始我自己在方法中new了一个,但是报错,后来使用Spring注入:
@Autowired
private UserProfileService userProfileService;

解决了.
public String regularExpression(String content,String path) {

Pattern pattern = Pattern.compile("@[^@\\s]*(?=[\\s::,,.。])");
Matcher matcher = pattern.matcher(content);
StringBuffer sbuf = new StringBuffer();
String owner;
while (matcher.find()) {
// 取出@的用户名
owner = matcher.group().split("@")[1];

// 判断所@的用户是否存在
//UserProfileService userProfileService = new UserProfileService();

boolean temp = userProfileService.isUserExist(owner);
/

if (temp) {
matcher
.appendReplacement(
sbuf,
"<a href=\"" + path + "/userprofile/"
+ owner
+ "/edit"
+ "\" target=\"_blank\"><font color=\"#3333FF\">"
+ matcher.group() + "</font></a>");
}
}
matcher.appendTail(sbuf);

return sbuf.toString();
}

后来分析应该是在UserProfileService类中,UserProfileDao也是注入的,自己新建的并没有,所以会报错,在UserProfileService中,把用到Dao的地方注释掉了就不报错了.

你可能感兴趣的:(Spring注入中出现的问题)