[首页]
[文章]
[教程]
首页
Web开发
Windows开发
编程语言
数据库技术
移动平台
系统服务
微信
设计
布布扣
其他
数据分析
首页
>
其他
> 详细
struts中的helloword(1)
时间:
2016-03-28 13:41:36
阅读:
263
评论:
0
收藏:
0
[点我收藏+]
注:文章中的所有图片均在附件中明白表明
首先要安装jdk1.6以及tomcat6和myeclipse 对于这些配置的安装 这里不再细细说明
其次是下载struts2
第一步
:去struts21的官网 http://struts.apache.org/2.1.6/index.html
点击以下图1中的的download now。下载图二中的全出就可以。
下载后解压待用;
第二步
;
打开myeclipse tomcat的集成较简单,不多讲;新建一个web project 取名为struts2。
第三步。
在刚刚下载的struts2-1-6文件夹下的lib中复制出例如以下六个文件
commons-logging-1.0.4.jar
freemarker-2.3.8.jar
ognl-2.6.11.jar
struts2-core-2.0.6.jar
xwork-2.0.1.jar
以及(由于是struts2-1-6版本号的。所以一下这个文件也不可缺少)
commons-fileupload-1.2.1
然后粘贴到WebRoot/WEB-INF/lib就可以;
第四步:
WebRoot文件夹下新建一个login.jsp
代码例如以下
login.jsp
Jsp代码
<%@ page language=
"java"
import=
"java.util.*"
pageEncoding=
"ISO-8859-1"
%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+
"://"
+request.getServerName()+
":"
+request.getServerPort()+path+
"/"
;
%>
<!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
>
<html>
<head>
<base href=
"<%=basePath%>"
>
<title>My JSP
‘login.jsp‘
starting page</title>
<meta http-equiv=
"pragma"
content=
"no-cache"
>
<meta http-equiv=
"cache-control"
content=
"no-cache"
>
<meta http-equiv=
"expires"
content=
"0"
>
<meta http-equiv=
"keywords"
content=
"keyword1,keyword2,keyword3"
>
<meta http-equiv=
"description"
content=
"This is my page"
>
<!--
<link rel=
"stylesheet"
type=
"text/css"
href=
"styles.css"
>
-->
</head>
<body>
<form action=
"login.action"
method=
"post"
>
username: <input name=
"username"
type=
"text"
><br>
password: <input name=
"password"
type=
"password"
><br>
<input type=
"submit"
value=
"submit"
>
</form>
</body>
</html>
第五步:
改动WEB-INF下的web.xml文件
代码例如以下
web.xml
Xml代码
<?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
<
web-app
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"
>
<
filter
>
<
filter-name
>
struts2
</
filter-name
>
<!-- 控制器 -->
<
filter-class
>
org.apache.struts2.dispatcher.FilterDispatcher
</
filter-class
>
</
filter
>
<
filter-mapping
>
<
filter-name
>
struts2
</
filter-name
>
<!-- 不论什么请求均有过滤器 -->
<
url-pattern
>
/*
</
url-pattern
>
</
filter-mapping
>
</
web-app
>
第六步:
新建action
在src文件夹下新建包com.test.action
在包中新建一个action代码例如以下
LoginAction.java
Java代码
package
com.test.action;
public
class
LoginAction
{
//getter和setter方法 就是依据这里的方法名来匹配client的信息
public
String getUsername() {
return
username;
}
public
void
setUsername(String username) {
this
.username = username;
}
public
String getPassword() {
return
password;
}
public
void
setPassword(String password) {
this
.password = password;
}
public
String execute()
throws
Exception
{
return
"success"
;
}
//相应表单上的
private
String username;
private
String password;
}
第七步:
struts配置文件
在src文件夹下新建一个struts.xml代码例如以下:
Xml代码
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd"
>
<
struts
>
<
package
name
=
"struts2"
extends
=
"struts-default"
>
<
action
name
=
"login"
class
=
"com.test.action.LoginAction"
>
<!-- result没有名字是默认的success -->
<
result
name
=
"success"
>
/result.jsp
</
result
>
</
action
>
</
package
>
</
struts
>
注意。struts.xml中有句话是
!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
红色这句可能会报错。解决办法是 将“http://”字样去掉 其它我不知道还有什么方法。有高手知道请指点一二。
第八步。
新建result文件
在WebRoot文件夹下新建一个result.jsp文件 代码例如以下:
Jsp代码
]
<%@ page language=
"java"
import=
"java.util.*"
pageEncoding=
"ISO-8859-1"
%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+
"://"
+request.getServerName()+
":"
+request.getServerPort()+path+
"/"
;
%>
<!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
>
<html>
<head>
<base href=
"<%=basePath%>"
>
<title>My JSP
‘result.jsp‘
starting page</title>
<meta http-equiv=
"pragma"
content=
"no-cache"
>
<meta http-equiv=
"cache-control"
content=
"no-cache"
>
<meta http-equiv=
"expires"
content=
"0"
>
<meta http-equiv=
"keywords"
content=
"keyword1,keyword2,keyword3"
>
<meta http-equiv=
"description"
content=
"This is my page"
>
<!--
<link rel=
"stylesheet"
type=
"text/css"
href=
"styles.css"
>
-->
</head>
<body>
helloworld
username: ${requestScope.username }<br>
password: ${requestScope.password }
</body>
</html>
至此。已经完毕了代码的书写工作。
接下去是公布;
右键点击struts2这个项目的名称。在菜单中选择myeclipse,在选择add and remove project……就可以,之后将出现图三
选择project,点击add公布到指定的tomcat就可以、
最后,打开浏览器。在浏览器 http://localhost:8080/struts2/login.jsp 就可以
struts中的helloword(1)
原文:http://www.cnblogs.com/mengfanrong/p/5328645.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年09月23日 (328)
2021年09月24日 (313)
2021年09月17日 (191)
2021年09月15日 (369)
2021年09月16日 (411)
2021年09月13日 (439)
2021年09月11日 (398)
2021年09月12日 (393)
2021年09月10日 (160)
2021年09月08日 (222)
最新文章
更多>
2021/09/28 scripts
2022-05-27
vue自定义全局指令v-emoji限制input输入表情和特殊字符
2022-05-27
9.26学习总结
2022-05-27
vim操作
2022-05-27
深入理解计算机基础 第三章
2022-05-27
C++ string 作为形参与引用传递(转)
2022-05-27
python 加解密
2022-05-27
JavaScript-对象数组里根据id获取name,对象可能有children属性
2022-05-27
SQL语句——保持现有内容在后面增加内容
2022-05-27
virsh命令文档
2022-05-27
教程昨日排行
更多>
1.
list.reverse()
2.
Django Admin 管理工具
3.
AppML 案例模型
4.
HTML 标签列表(功能排序)
5.
HTML 颜色名
6.
HTML 语言代码
7.
jQuery 事件
8.
jEasyUI 创建分割按钮
9.
jEasyUI 创建复杂布局
10.
jEasyUI 创建简单窗口
友情链接
汇智网
PHP教程
插件网
关于我们
-
联系我们
-
留言反馈
- 联系我们:wmxa8@hotmail.com
© 2014
bubuko.com
版权所有
打开技术之扣,分享程序人生!