struts2 如何写helloworld程序
谁可以教我用struts2写helloworld程序??我想学习struts,想先写一个helloword,了解一下structs2如何使用,可是看了一些资料,全是理论,...
谁可以教我用struts2 写helloworld程序??我想学习struts,想先写一个helloword,了解一下structs2如何使用,可是看了一些资料,全是理论,不知道哪位朋友可以详细说下步骤,我的环境是MyEclipse 6.5 + Tomcat 6.0 +struts2 ,希望告诉指点。
展开
1个回答
2013-06-29
展开全部
web.xml中加入<filter><filter-name>struts2</filter-name><filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter><filter-mapping><filter-name>struts2</filter-name><url-pattern>/*</url-pattern></filter-mapping>2建立一个类helloworldaction(要实现Action接口)public chlass HelloWorldAction implements Action{private String message:public String getMessage(){return message:}public String execute() throws Exceptionmessage="hello world!";return SUCCESS;}编写结果页面helloworld.jsp<%@ page contentType="text/html; charset=GBK"><%@ taglib prefix="s" uri="/struts-tags"%><html><head><title>欢迎</title></head><body><h2><s:property value="message"/s></h2></body></html>然后在src目录下写一个struts.xml文件...........<struts><package name="default" extends="struts-default"><action name="heloworld" class="刚才写的helloworldaction类的路径"><result name="SUCCESS">/helloworld.jsp</result></action></package></struts>然后访问hellworldaction.jsp就可以了(我随手写也没检查注意错误)还有象这种问题随便一个教程里都会有的,以后就不要提问了会让人笑话的
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询