style:TextMsgHandler中自动装配规范问题修改。static 成员不应该使用Autowired注解装配;且会找不到PrioritizedUrlTitleDiscover类型的bean对象。修复方式为:去除@Autowired注解,使用new方式创建对象

This commit is contained in:
Yancyji
2023-06-19 08:51:51 +00:00
parent a4351b2c3d
commit 5c252b1d04

View File

@@ -46,7 +46,7 @@ public class TextMsgHandler extends AbstractMsgHandler {
private UserInfoCache userInfoCache;
@Autowired
private IRoleService iRoleService;
@Autowired
private static final PrioritizedUrlTitleDiscover URL_TITLE_DISCOVER = new PrioritizedUrlTitleDiscover();
@Override