Configuring JDeveloper 11g to use Struts 2

原文地址:http://203.208.33.132/search?q=cache:hSQNtuQxaqEJ:theblasfrompas.blogspot.com/2009/04/configuring-jdeveloper-11g-to-use.html+jdeveloper+struts2&cd=2&hl=zh-CN&ct=clnk&gl=cn&st_usg=ALhdy297q-NfZGbk_ZlYjK3n6mE45UIvdA

 

I was recently asked how to setup JDeveloper 11g web projects to use Struts 2 here is what I did to get this working. Keep in mind JDeveloper has design time support for Struts 1.x but not Struts 2 so this is a manual process.

1. Start Jdeveloper 11g
2. Select File | New | General | Applications | Generic Application
3. Name the application "Struts2Demo" and click next
4. Name the project "Demo" and press finish

Now at this point we want to add a simple JSP page to the project so
we end up with a web project , we will need to configure this to use
struts2 manually which we will do soon.

5. Right click on the project and select "New | Web Tier | JSP"
6. call the JSP "sayhello.jsp" and append "/pages" to the end of
the directory path so it creates the JSP in a sub directory called
"pages".

At this point you will need to download the Struts libraries. At a minimum,
you will need to put the following in your WEB-INF/lib directory of your
JDeveloper project:

* struts2 -core.jar (The framework itself)
* xwork.jar (Struts 2 is built on the XWork 2 framework)
* ognl.jar (Object Graph Notation Language is used throughout the framework)
* freemarker.jar (Freemarker is used to create UI tag templates in Struts 2)
* commons-logging.jar (Used to log to log4j or JDK logging)

Download struts2 from here. I am using 2.1.6 here.

http://struts.apache.org/download.cgi

7. Refresh the navigator to ensure your project shows the WEB-INF/lib folder
and the required struts2 libraries.
8. Double click on the project to invoke project properties dialog and
select "Libraries/Classpath"
9. Add the 5 jars files to the project and press OK. You could create
a single library and add the 5 JAR files to that library if you like.

Now we are ready to configure our project to use struts2 .

10. Open up the web.xml and add the following entries


<? xml version = '1.0' encoding = 'windows-1252' ?>
< web-app xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation = "http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version = "2.5"
xmlns = "http://java.sun.com/xml/ns/javaee" >
< description > Empty web.xml file for Web Application </ description >
< 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 >
< session-config >
< session-timeout > 35 </ session-timeout >
</ session-config >
< mime-mapping >
< extension > html </ extension >
< mime-type > text/html </ mime-type >
</ mime-mapping >
< mime-mapping >
< extension > txt </ extension >
< mime-type > text/plain </ mime-type >
</ mime-mapping >
</ web-app >


11. Create a java class as follows


package demo . struts2 . action ;

import com . opensymphony . xwork2 . ActionSupport ;

public class ExampleAction extends ActionSupport
{
private String message ;

public String execute () throws Exception
{
this . message = "Hello from Struts 2" ;
return SUCCESS ;
}

public void setMessage ( String message )
{
this . message = message ;
}

public String getMessage ()
{
return message ;
}
}


12. Struts places its configuration in a struts.xml file. Create the file
at the root of your source folder for the project as follow. We’ll need
to add our new action to the struts.xml file.


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

< struts >
<!-- Configuration for the default package. -->
< package name = "default" extends = "struts-default" >
< action name = "ExampleAction" class = "demo.struts2 .action.ExampleAction" >
< result name = "success" > /pages/sayhello.jsp </ result >
</ action >
</ package >
</ struts >


13. Finally ensure the "sayhello.jsp" looks as follows


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ page contentType = "text/html;charset=windows-1252" %>
<%@ taglib uri = "/struts-tags" prefix = "s" %>
< html >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=windows-1252" />
< title > sayhello</ title >
</ head >
< body >
< h2 >< s:property value = "message" /></ h2 >
</ body >
</ html >



Now we need to add the Struts2 tag library to our project.

14. Double click on the project to invoke the project properties and
select "JSP Tag Libraries"
15. Click the "Add" button
16. Select "Project" and then press the "New" button
17. Navigate to "public_html/WEB-INF/lib/struts2 -core.jar" and
press 'Open"
18. Verify it finds "Struts tage 2.2.3".
19. Press OK
20. Again double click on the project to invoke the project properties
and select "Java EE Application" and set the context root to "struts2demo"
and press Ok
21. Select File | save All
22. Select Build | Demo.jpr to ensure it compiles fine.
23. Navigate to the default domain directory LIB folder of the integrated server
and add the 5 JAR files we need for struts 2

eg: D:/jdev11g-boxer/jdeveloper /jdev/system11.1.1.0.31.52.05/DefaultDomain/lib

commons-logging-1.0.4.jar
freemarker-2.3.13.jar
ognl-2.6.11.jar
struts2 -core-2.1.6.jar
xwork-2.1.2.jar

Now JDeveloper doesn't provide support for running struts2 applications so you
will need to create some sort of index.jsp page which will redirect to our action
we created. Here we will just run the JSP and then alter the URL to invoke
your action so that the view page will render correctly.

23. Right click on "sayhello.jsp" and select "Run" to start the Integrated
WLS.

You will notice it displays nothing , that is due to the fact we have not
run the actual action which we do by altering the URL as follows

http://127.0.0.1:7101/struts2demo/ExampleAction.action

Note: I am not 100% sure why I need to add the struts2 JAR files to
the defualt domain LIB folder of my WLS server as I would expect it to find
those files in the WEB-INF/lib directory of the application which is how
struts1 works and I believe how struts2 should work. I even went back
to JDeveloper 10.1.3 and found that indeed it works there without
having to manilpulate it's classpath which proves the files in WEB-INF/lib
of the application is all that is needed.

 

配置注意事项:


1. jdeveloper现在还不支持直接运行strut2,所以需要手动配置

2. 写struts.xml时候, 在jdeveloper要建立一个普通的xml文件, 不可以使用new-struts-(struts-config.xml) 这样写进去是根据1的规范来定的, 所以加入新的tag会运行有问题.

3. 在添加jsp文件的时候, 同样要把文中提到的struts lib 2.2.3加进去, 这个才是strut2的lib, 否则也运行不了. 原因同1.


这个例子按照我下面配置注意的设置好以后可以运行


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值