Struts的问题
本人最近在学struts2,但是我连最基本的Action都无法实现。我的web.xml配置如下

<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"code_br_code_half_space_code_half_space_code_half_space_ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"code_br_code_half_space_code_half_space_code_half_space_ xsi:schemaLocation="http://java.sun.com/xml/ns/j2eecode_br_code_half_space_code_half_space_code_half_space_code_half_space_code_half_space_code_half_space_code_half_space_code_half_space_http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng. filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>