码迷,mamicode.com
首页 > 其他好文 > 详细

struts2——第一个案例

时间:2018-08-04 17:25:53      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:logs   官方   apache   color   apach   extends   system   enc   tsp   

步骤如下

编程工具等百度云分享

1、创建一个web项目

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

2、引入struts2的基本jar包

技术分享图片

struts2的基本jar包百度云

链接:https://pan.baidu.com/s/1LBnPJhFjqHuU7XW6m9xIqA 密码:d6wg

技术分享图片

技术分享图片

技术分享图片

3、新建一个web.xml

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片
 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <web-app version="3.0" 
 3 xmlns="http://java.sun.com/xml/ns/javaee" 
 4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 5 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
 6 http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
 7 <filter>
 8     <filter-name>struts2</filter-name>
 9     <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
10   </filter>
11 <filter-mapping>
12     <filter-name>struts2</filter-name>
13     <url-pattern>/*</url-pattern>
14 </filter-mapping>
15   <display-name></display-name>
16   <welcome-file-list>
17     <welcome-file>index.jsp</welcome-file>
18   </welcome-file-list>
19 </web-app>
web.xml的代码

4、创建一个struts.xml

技术分享图片

技术分享图片

技术分享图片

技术分享图片
 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <!DOCTYPE struts PUBLIC
 3     "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
 4     "http://struts.apache.org/dtds/struts-2.3.dtd">
 5 <struts>
 6     <package name="hello" extends="struts-default">
 7         <action name="hello" class="com.xiaostudy.web.Hello" method="print">
 8             <result name="ok" >/ok.jsp</result>
 9         </action>
10     </package>
11 </struts>
struts.xml的代码

5、创建相应的Java类

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片
 1 package com.xiaostudy.web;
 2 
 3 public class Hello {
 4     
 5     public String print() {
 6         System.out.println("Hello类的print方法执行了。。。。");
 7         return "ok";
 8     }
 9 
10 }
Hello类的代码

6、创建相应的jsp文件

技术分享图片

7、导入相应的servlet包

技术分享图片

技术分享图片
 1 <%@ page language="java" contentType="text/html; charset=UTF-8"
 2     pageEncoding="UTF-8"%>
 3 <!DOCTYPE html>
 4 <html>
 5     <head>
 6         <meta charset="UTF-8">
 7         <title>struts2的一个例子</title>
 8     </head>
 9     <body>
10     okokokok
11     </body>
12 </html>
ok.jsp的代码

tomcat官方下载连接——安装版&绿色版

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

8、添加一个tomcat

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

9、启动tomcat

技术分享图片

技术分享图片

技术分享图片

技术分享图片

10、输入相应的地址访问

技术分享图片

技术分享图片

技术分享图片


 

struts2——第一个案例

标签:logs   官方   apache   color   apach   extends   system   enc   tsp   

原文地址:https://www.cnblogs.com/xiaostudy/p/9419105.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!