我将我的struts2版本从2.3.14更改为2.3.16.1,似乎最新版本不支持了ServletRequestAware
,ServletResponseAware
我该怎么办?我在网上找不到任何东西。
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-core</artifactId>
<version>2.3.16.1</version>
<type>jar</type>
</dependency>
代码
import org.apache.struts2.interceptor.ServletRequestAware;
public class MyExample implements ServletRequestAware, ServletResponseAware {
错误
package org.apache.struts2.interceptor does not exist.
当我尝试为其查找依赖项时,Maven 显示支持它的最新版本的 Struts2 是 2.3.14!