程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA編程入門知識 >> 創建Web應用和Struts框架的配置文件

創建Web應用和Struts框架的配置文件

編輯:JAVA編程入門知識

  創建Web應用的配置文件

  對於Struts應用,它的配置文件web.XML應該對ActionServlet類進行配置,此外,還應該聲明Web應用所使用的Struts標簽庫,本例中聲明使用了三個標簽庫: Struts Bean、Struts Html和Struts Logic標簽庫。例程1為web.xml的源代碼。

例程1 web.xml
  
  <?xml version="1.0" encoding="UTF-8"?>
  
  <!DOCTYPE web-app
  
  PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  
  "http://Java.sun.com/j2ee/dtds/web-app_2_2.dtd">
  
  <web-app>
  
  <display-name>HelloApp Struts Application</display-name>
  
  <!-- Standard Action Servlet Configuration -->
  
  <servlet>
  
  <servlet-name>action</servlet-name>
  
  <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
  
  <init-param>
  
  <param-name>config</param-name>
  
  <param-value>/WEB-INF/struts-config.xml</param-value>
  
  </init-param>
  
  <load-on-startup>2</load-on-startup>
  
  </servlet>
  
  <!-- Standard Action Servlet Mapping -->
  
  <servlet-mapping>
  
  <servlet-name>action</servlet-name>
  
  <url-pattern>*.do</url-pattern>
  
  </servlet-mapping>
  
  <!-- The Usual Welcome File List -->
  
  <welcome-file-list>
  
  <welcome-file>hello.jsp</welcome-file>
  
  </welcome-file-list>
  
  <!-- Struts Tag Library Descriptors -->
  
  <taglib>
  
  <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
  
  <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
  
  </taglib>
  
  <taglib>
  
  <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
  
  <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
  
  </taglib>
  
  <taglib>
  
  <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
  
  <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
  
  </taglib>
  
  </web-app>

  創建Struts框架的配置文件

  正如前面提及的,Struts框架答應把應用劃分成多個組件,提高開發速度。而Struts框架的配置文件struts-config.xml可以把這些組件組裝起來,決定如何使用它們。例程2是helloapp應用的struts-config.xml文件的源代碼。

例程2  struts-config.xml
<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">

<!--
This is the Struts configuration file 
  
  for the "Hello!" sample application --> <struts-config> <!-- ======== Form Bean Definitions ==================== --> <form-beans> <form-bean name="HelloForm" type="hello.HelloForm"/> </form-beans> <!-- ========== Action Mapping Definitions =================== --> <action-mappings> <!-- Say Hello! --> <action path = "/HelloWorld" type = "hello.HelloAction" name = "HelloForm" scope = "request" validate = "true" input = "/hello.jsp" > <forward name="SayHello" path="/hello.jsp" /> </action> </action-mappings> <!-- ========== Message Resources Definitions ================ --> <message-resources parameter="hello.application"/> </struts-config>

  
 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved