您好我正在尝试在struts.xml文件中映射一个操作,但它无法正常工作。 我正在使用我的项目的struts2框架.-我的代码显示在下面 -
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts
Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
<package name="default" extends="struts-default" namespace="/">
<action name="guideLogin" class="com.my.orderguide.action.GuideLogin">
<result name="success">logic/logsuccess.jsp</result>
</action>
</package>
</struts>
我的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" id="WebApp_ID" version="3.0">
<display-name>ORDERGUIDE</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<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>
当我尝试使用action="guideLogin"
形式从index.jsp页面登录时
它引用了 - http://localhost:8080/index.jsp URL
。
请给我解决这个问题的建议......“