struts2 没有扫描注解
时间: 2023-10-15 09:08:31 浏览: 166
struts2注解
4星 · 用户满意度95%
Struts2 默认不会扫描注解,但是可以通过在 `struts.xml` 文件中配置 `struts.convention.package.includeAnnotations` 属性来开启注解扫描。例如:
```xml
<struts>
<constant name="struts.convention.package.includeAnnotations" value="javax.persistence.*"/>
<!-- 其他配置 -->
</struts>
```
以上配置会扫描包含 `javax.persistence.*` 注解的类。注意,使用注解扫描需要在项目中引入 `struts2-convention-plugin` 插件。
阅读全文