基於Eclipse搭建SSH框架:第一篇 配置struts2
阿新 • • 發佈:2019-01-30
SSH是Java web開發中常用的框架,本文將講解SSH框架的搭建過程。這裡使用的SSH分別為struts2.3.31,spring3.2.3以及hibernate4.3.10。
具體下載地址,百度即可。還有搭建SSH框架所需要的JDK,eclipse,tomcat這些軟體,它們的安裝方法這裡就不介紹了。下面介紹具體的搭建步驟:
一、在Eclipse中建立一個web專案並配置好Struts2
1.在eclipse中點選File->New->Dynamic Web Project,並輸入專案名稱SSHDemo,然後點選Finish。
2.配置Struts2,將Struts2需要的jar包複製到WebContent下的WEB-INF下的lib裡面。必要的jar包如下:
3.在WEB-INF下建立web.xml檔案,並編輯其內容如下:
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>S2SH</display-name> <filter> <!-- Filter名字 --> <filter-name>struts2</filter-name> <!-- Filter入口 --> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <!-- Filter名字 --> <filter-name>struts2</filter-name> <!-- 截獲的URL --> <url-pattern>/*</url-pattern> </filter-mapping> <welcome-file-list> <welcome-file>index.jsp</welcome-file> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> </welcome-file-list> </web-app>
4.在src下建立com.integration.action包,並在包中建立TestAction類,程式碼如下:
package com.integration.action;
import com.opensymphony.xwork2.ActionSupport;
public class TestAction extends ActionSupport{
public String execute() throws Exception{
return "success";
}
}
正如看到的一樣,這個類什麼也沒做,直接返回success。5.在src下建立struts.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.xml檔案的根元素 -->
<struts>
<constant name="struts.i18n.encoding" value="UTF-8"></constant>
<!-- <constant name="struts.objectFactory" value="spring" />
-->
<!-- 定義包 -->
<package name="default" namespace="/" extends="struts-default">
<action name="test" class="com.integration.action.TestAction">
<result name="success">/success.jsp</result>
</action>
</package>
</struts>
6.SSHDemo專案概覽
其中index.jsp與success.jsp的程式碼分別如下:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> Hello World!! </body> </html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
訪問成功!!
</body>
</html>
7.執行SSHDemo專案
在專案上右鍵點選Run As->Run on Server
在位址列輸入localhost:8080/SSHDemo/test
到此,Struts2配置完成。下一篇部落格介紹Struts2與Spring的整合。