对于struts2.0处于如今比较流行的一种J2EE的架构,现在只是自己在开始学习,先看一下如何在Jbuilder2007下配置Struts2.0的运用环境吧。struts2.0所需要的jar可以在如下网站中下载得到 我个人下载的是最新的struts2.0.11
其一先看看web.xml的内容应该如下:
<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" version="2.4" xmlns="" xmlns:xsi="" xsi:schemaLocation=" /web-app_2_4.xsd"> <display-name> HelloWorld</display-name> <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> <welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list> </web-app>
|
以及struts.xml的代码如下:
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" ""> <struts> <include file="struts-default.xml"/> </struts>
|
具体文件的位置如下图所示:
index.html文件的内容为很简单的一个代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Hello World</title> </head> <body> <h3>Hello World!</h3> </body> </html>
|
所有的都配置好后,把该工程打包成为struts2.0.war,然后放在tomcat的webapps下,
然后启动tomcat,然后打开
就可以看到Hello World的字样了,说明配置成功了。
其实假如有问题的话,删除一下解压Struts2.0lib文件下的那些plugin的,一般就可以了。
阅读(528) | 评论(0) | 转发(0) |