EclipseにおけるStruts 2の構成
1.Tomcatをインストールし、サーバーの運行環境を増やす
Window-->Preferences-->Server-->Runtime Environment-->Add->Apache-->Apache Tomcat v 6を選択.0->next-->Tomcatインストールルートを選択-->Finish
2.Java実行環境JREを変更します.デフォルトはjre 6です.これは実行環境だけです.デバッグは含まれません.jdk 1に変更します.6
Window-->Preferences-->Java-->Installed JREs->Add->Standard VMの選択-->Next-->JDKインストールルートディレクトリの選択-->Finish
3.EclipseにTomcatプラグインをインストールし、Preferencesを修正する
Window-->Preferences-->Tomcat-->Tomcatバージョンとインストールルートディレクトリの選択-->Advanced->Tomcatインストールとディレクトリの選択-->OK
4.新規Webプロジェクト(Dynamic Web Project)を作成し、Target runtime->Apache Tomcat v 6を選択する.0.
5.struts-2.1.6を解凍し、appsディレクトリの下でstruts 2-blank-2.1.6を解凍する.war;
6.struts-2.1.6appsstruts 2-blank-2.1.6WEB-INFlibディレクトリをコピーjunit-3.8.1を除くJArとspring-test-2.5.6.JAr以外のすべてのJARパッケージは、エンジニアリング-->WEB-INF->libディレクトリにあります.commons-ioのjarパッケージは、ファイルのアップロードとダウンロードに必要です.その他は必須です.
7.パッケージエクスプローラビューでstruts 2-blank-2.1.6WEB-INFsrcjavaディレクトリのstrutsをコピーする.xmlはエンジニアリングsrcディレクトリの下にあります.
8.struts.xmlの余分な内容の注釈、strutsモードを開発モードに変更します:
9.工程-->WEB-INF目次の下で、webを修正する.xml、filterとfilter-mappingを追加
10.jspファイルを新規作成します.hello.jsp、Tomcatを起動して、ブラウザの中でhttp://localhost:8080/MyStruts/helloを入力して、効果を見ます!
その他の構成:
1.struts 2-core-2.16を確立する.jarファイルに対応するソースコードと、Javadocに対応します.struts 2-core-2.16を選択します.JArプロパティ、Java Source Attachment:struts-2.1.6/src/core/src/main/java;Javadoc Location:docs/struts2-core/apidocs/. 2.struts.xml自動プロンプトなし
a)window–preferences–xml-xml catalog->add b)選択key typeはURI c)key:http://struts.apache.org/dtds/struts-2.0.dtd d)location:対応するdtdファイルstruts-coreパッケージにあり、解凍し、struts-2.1.6libstruts 2-core-2.1.6struts-2.0などの位置を指定する.dtd
3.コピーされたアイテムの場合はContent rootを変更する必要があります
4.TomcatのJVMもjdk 1を選択する.6
Window-->Preferences-->Server-->Runtime Environment-->Add->Apache-->Apache Tomcat v 6を選択.0->next-->Tomcatインストールルートを選択-->Finish
2.Java実行環境JREを変更します.デフォルトはjre 6です.これは実行環境だけです.デバッグは含まれません.jdk 1に変更します.6
Window-->Preferences-->Java-->Installed JREs->Add->Standard VMの選択-->Next-->JDKインストールルートディレクトリの選択-->Finish
3.EclipseにTomcatプラグインをインストールし、Preferencesを修正する
Window-->Preferences-->Tomcat-->Tomcatバージョンとインストールルートディレクトリの選択-->Advanced->Tomcatインストールとディレクトリの選択-->OK
4.新規Webプロジェクト(Dynamic Web Project)を作成し、Target runtime->Apache Tomcat v 6を選択する.0.
5.struts-2.1.6を解凍し、appsディレクトリの下でstruts 2-blank-2.1.6を解凍する.war;
6.struts-2.1.6appsstruts 2-blank-2.1.6WEB-INFlibディレクトリをコピーjunit-3.8.1を除くJArとspring-test-2.5.6.JAr以外のすべてのJARパッケージは、エンジニアリング-->WEB-INF->libディレクトリにあります.commons-ioのjarパッケージは、ファイルのアップロードとダウンロードに必要です.その他は必須です.
7.パッケージエクスプローラビューでstruts 2-blank-2.1.6WEB-INFsrcjavaディレクトリのstrutsをコピーする.xmlはエンジニアリングsrcディレクトリの下にあります.
8.struts.xmlの余分な内容の注釈、strutsモードを開発モードに変更します:
<?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>
<!--
<constant name="struts.enable.DynamicMethodInvocation" value="false" />
<constant name="struts.devMode" value="false" />
<include file="example.xml"/>
<package name="default" namespace="/" extends="struts-default">
<default-action-ref name="index" />
<action name="index">
<result type="redirectAction">
<param name="actionName">HelloWorld</param>
<param name="namespace">/example</param>
</result>
</action>
</package>
-->
<constant name="struts.devMode" value="true" />
<package name="default" namespace="/" extends="struts-default">
<action name="hello">
<result>
/hello.jsp
</result>
</action>
</package>
<!-- Add packages here -->
</struts>
9.工程-->WEB-INF目次の下で、webを修正する.xml、filterとfilter-mappingを追加
<?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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
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>MyStruts</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
10.jspファイルを新規作成します.hello.jsp、Tomcatを起動して、ブラウザの中でhttp://localhost:8080/MyStruts/helloを入力して、効果を見ます!
その他の構成:
1.struts 2-core-2.16を確立する.jarファイルに対応するソースコードと、Javadocに対応します.struts 2-core-2.16を選択します.JArプロパティ、Java Source Attachment:struts-2.1.6/src/core/src/main/java;Javadoc Location:docs/struts2-core/apidocs/. 2.struts.xml自動プロンプトなし
a)window–preferences–xml-xml catalog->add b)選択key typeはURI c)key:http://struts.apache.org/dtds/struts-2.0.dtd d)location:対応するdtdファイルstruts-coreパッケージにあり、解凍し、struts-2.1.6libstruts 2-core-2.1.6struts-2.0などの位置を指定する.dtd
3.コピーされたアイテムの場合はContent rootを変更する必要があります
4.TomcatのJVMもjdk 1を選択する.6