JavaWeb学习:Struts2入门
2021-03-15 10:29
标签:out jsp cat ati tty conf 下载 本质 跳转 一、Struts2概述 Struts2:是一个基于MVC设计模式的Web应用框架,它本质相当于一个Servlet,在MVC设计模式中Strust2作为控制器来建立模型与视图的数据交互。 二、搭建Struts2开发环境 ①、下载Struts2 官网struts.apache.org ②、解压Struts2开发包 apps:Struts2提供的应用,war文件:web项目打成war包。直接放入到tomcat可以允许。 docs:Struts2的开发文档和API lib:Strtus2框架的开发的jar包 src :Struts2的源码 ③、引入jar包 打开解压后的struts-2.5.xx\apps,有两个(struts2-showcase.war、struts2-rest-showcase.war--建议解压)war包,修改后缀war变更为zip,使用解压软件解压后找到WEB-INF\lib找到所需jar文件,将jar包copy到eclipse项目中的WebContent/WEB-INF/lib/文件目录下,拷贝完后别忘了把jar添加到Build Path中 ④、将必备的web.xml、struts.xml两个配置文件拷贝出来 还是以struts2-rest-showcase.war文件为参考, 在WEB-INF下web.xml copy到项目的WebContent/WEB-INF下 修改web.xml struts2.5过滤器类全名称 :org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter struts2.3过滤器类全名称 :org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter 在WEB-INF/classes下struts.xml copy到 Java Resources/src/,拷贝之后Libraries 修改strut.xml ⑤、新建一个Action类,继承ActionSupport ⑥、新建一个index.jsp文件,验证是否跳转 ⑦、启动服务器 结果: 地址栏输入hello,会进入HelloAction的execute方法中 JavaWeb学习:Struts2入门 标签:out jsp cat ati tty conf 下载 本质 跳转 原文地址:https://www.cnblogs.com/WarBlog/p/14006943.htmlxml version="1.0" encoding="UTF-8"?>
web-app id="WebApp_9" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
display-name>Struts 2 Applicationdisplay-name>
filter>
filter-name>struts2filter-name>
filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilterfilter-class>
filter>
filter-mapping>
filter-name>struts2filter-name>
url-pattern>/*url-pattern>
filter-mapping>
welcome-file-list>
welcome-file>index.jspwelcome-file>
welcome-file>default.jspwelcome-file>
welcome-file>index.htmlwelcome-file>
welcome-file-list>
web-app>
xml version="1.0" encoding="UTF-8" ?>
DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
"http://struts.apache.org/dtds/struts-2.5.dtd">
struts>
constant name="struts.action.extension" value="action,," />
package name="strutsTest" extends="struts-default">
action name="hello" class="com.struts2.demo.HelloAction">
result name="success">index.jspresult>
action>
package>
struts>
public class HelloAction extends ActionSupport {
@Override
public String execute() throws Exception {
System.out.println("进入HelloAction的execute方法... ...");
return SUCCESS;
}
}
@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
DOCTYPE html>
html>
head>
meta charset="UTF-8">
title>Insert title heretitle>
head>
body>
h1>Hello Strut2h1>
body>
html>
文章标题:JavaWeb学习:Struts2入门
文章链接:http://soscw.com/index.php/essay/64907.html