struts.xml 部分配置如下:
<struts>
<!-- 包bookcode 命名空间是默认命名空间("namespace="";")-->
<package name="bookcode" extends='struts-default'>
<action name="submit" class="action.Login">
<result name="success">index.jsp</result>
</action>
</package>
<!-- 包package1 命名空间package1 -->
<package name="package1" extends="struts-default" namespace="/package1">
<action name="submit" class="action.Login1">
<result>/package1/login.jsp</result>
</action>
</package>
<!-- 包package2 命名空间package2 -->
<package name="package2" extends="struts-default" namespace="/package2">
<action name="submit" class="action.Login2">
<result>/package2/login.jsp</result>
</action>
</package>
<!-- 包package3 命名空间 根namespace -->
<package name="package3" extends="struts-default" namespace="/">
<action name="submit" class="action.Login3">
<result>/package3/login.jsp</result>
</action>
</package>
index.jsp 和四个login.jsp页面body区如下:
<body>
<s:form action="submit">
<s:submit value="submit"/>
</s:form>
</body>
http://localhost:8080/bookcode/index.jsp 对应login.action
http://localhost:8080/bookcode/package1/login.jsp 对应login1.action
http://localhost:8080/bookcode/package2/login.jsp 对应login2.action
http://localhost:8080/bookcode/package3/login.jsp
对应:
引用
HTTP Status 404 - /bookcode/bookcode/index.jsp
--------------------------------------------------------------------------------
type Status report
message /bookcode/bookcode/index.jsp
description The requested resource (/bookcode/bookcode/index.jsp) is not available.
--------------------------------------------------------------------------------
Apache Tomcat/6.0.10
- 大小: 8.7 KB
分享到:
相关推荐
struts2-core-2.0.1.jar, struts2-core-2.0.11.1.jar, struts2-core-2.0.11.2.jar, struts2-core-2.0.11.jar, struts2-core-2.0.12.jar, struts2-core-2.0.14.jar, struts2-core-2.0.5.jar, struts2-core-2.0.6.jar,...
Struts2-showcase是一个用于演示和学习Apache Struts2框架功能的开源项目。这个压缩包“struts2-showcase.rar”包含了完整的源代码,旨在帮助开发者深入理解Struts2框架的工作原理及其各种特性。以下是对Struts2和...
struts2-spring-plugin-2.3.15.2.jar ; struts2-json-plugin-2.3.16.3.jarstruts2-spring-plugin-2.3.15.2.jar ; struts2-json-plugin-2.3.16.3.jar
struts2-config-browser-plugin-2.3.24.jar, struts2-core-2.3.24.jar, struts2-jasperreports-plugin-2.3.24.jar, struts2-jfreechart-plugin-2.3.24.jar, struts2-pell-multipart-plugin-2.3.24.jar, struts2-...
struts2-ssl-plugin-1.2.1.jar
Struts2-Spring-Plugin-2.3.4.jar 是一个专门为 Struts 2 框架和 Spring 框架整合而设计的插件,主要用于处理 Struts 2 和 Spring 之间的集成问题。在Java Web开发中,这两个框架经常一起使用,Spring 提供了依赖...
struts2-struts1-plugin-2.1.6.jar
这个插件允许开发者在Struts 2中轻松地创建能够返回JSON的Action,使得前端(通常使用JavaScript库如jQuery)可以获取到JSON数据并进行进一步处理。 现在我们来详细讨论这两个库在实际应用中的作用: 1. **json-...
Struts2-Spring-Plugin-2.2.1.jar 是一个专门为 Struts2 框架与 Spring 框架集成而设计的插件。这个插件的主要目的是简化在基于Struts2的应用程序中整合Spring的功能,如依赖注入(DI)、AOP(面向切面编程)以及...
struts2-dojo 跨域时解决拒绝访问的问题
struts2-core-2.5.18.jar包下载,支持struts2的类库下载
3. **JSON插件配置**:在`struts-plugin.xml`配置文件中,会注册JSON插件,声明结果类型和其他相关设置,如启用GZIP压缩、排除某些字段等。 4. **拦截器**:Struts2的拦截器机制允许在Action调用前后执行特定逻辑。...
Struts2 JSON Plugin是针对Apache Struts2框架的一个重要组件,版本为2.3.8。这个插件主要的功能是让Struts2应用程序能够轻松地处理JSON(JavaScript Object Notation)数据格式,使得Web应用可以方便地进行JSON序列...
Struts2-core-2.0.12.jar是Apache Struts框架的一个核心组件包,它在Java Web开发中扮演着至关重要的角色。Struts2是一个开源的MVC(Model-View-Controller)框架,用于构建高效、可扩展的Web应用程序。这个版本号...
struts2-convention-plugin-2.3.15.1.jar
"struts2-016/017漏洞"指的是两个在Struts2框架中被发现的安全问题,它们对使用该框架的应用程序构成了严重的威胁。 Struts2 S2-016漏洞,全称为“Struts2 OGNL注入漏洞”,主要出现在Struts2的2.3.5到2.3.31以及...
struts2-showcase-2.1.8.1.warstruts2-showcase-2.1.8.1.warstruts2-showcase-2.1.8.1.warstruts2-showcase-2.1.8.1.warstruts2-showcase-2.1.8.1.war
struts2-jfreechart-plugin-2.1.8.1.jar
Struts2是一个基于MVC(Model-View-Controller)设计模式的开源Java Web框架,它由Apache软件基金会维护。在Web开发领域,Struts2以其灵活性、可扩展性和强大的功能而受到广泛欢迎。Struts2-2.5.13是该框架的一个...
struts2-core-2.2.1-sources.jar 源码,学strut2源码时能用到的