Struts2攔截器報(bào)錯(cuò)解決之道
首先web.xml中的配置文檔如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
? <display-name>spring_day02_web</display-name>
?
? <filter>
??? <filter-name>struts2</filter-name>
??? <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
? </filter>
?
? <filter-mapping>
??? <filter-name>struts2</filter-name>
??? <url-pattern>/*</url-pattern>
?
? </filter-mapping>
?? <welcome-file-list>
??? <welcome-file>index.html</welcome-file>
??? <welcome-file>index.htm</welcome-file>
??? <welcome-file>index.jsp</welcome-file>
??? <welcome-file>default.html</welcome-file>
??? <welcome-file>default.htm</welcome-file>
??? <welcome-file>default.jsp</welcome-file>
?? ?
? </welcome-file-list>
</web-app>
不過(guò)當(dāng)轉(zhuǎn)到瀏覽器運(yùn)行時(shí)便出現(xiàn)了如下問(wèn)題,在網(wǎng)上查找了一些解決方案,但是似乎都不能解決。

通過(guò)交流后更改了一些配置,問(wèn)題解決了。
問(wèn)題出在commons-lang3-3.6.jar上,于是將lang包換成最新的了。突然就好了,也在里面找到了該方法。于是乎又重新燃起了我繼續(xù)學(xué)習(xí)下去的希望。
