Home Tutorialhelp Comment struts2 in eclipse 2

 
 

Comment

Chandramohan P L
struts2 in eclipse 2,
July 5, 2007 at 2:42 PM

Here is a work around to get it working in eclipse 3.2. Get WTP plugins for eclipse. Create DynamicWebProject. The below is what the project structure will look like:

projectname --> Name of the projct in eclipse
src
com.yourcompname -->place your java files
strut.xml
web
css ---> This folder contains CSS files
pages ---> This folder contains JSPs
WEB-INF
classes --> classes, strut.xml
lib --> library files
libext --> library files
web.xml
index.jsp or index.html

The below is a build.xml which would deploy the application as war file in JBOSS. This build.xml assumes JBOSS resides in the root location. A little or no modifcation would be required in this file if need be.

<?xml version="1.0"?>
<!-- This build file builds for JBoss -->
<project name="strut2application" default="deploy" basedir=".">
<property name="jboss.home.dir" value="/jboss-4.0.0"/>
<property name="jboss.deploy.dir" value="${jboss.home.dir}/server/default/deploy"/>
<property name="src.dir" value="src" />
<property name="cls.dir" value="WebRoot/WEB-INF/classes" />
<property name="web.dir" value="WebRoot"/>
<property name="build.dir" value="build"/>
<property name="war" value="${build.dir}/struts2Proj.war" />
<property name="war.web.xml" value="${web.dir}/WEB-INF/web.xml" />
<property name="web.cls.dir" value="WebRoot/WEB-INF/classes"/>

<!--Clean the project workspace -->
<target name="clean" description="Clean Packaging">
<delete dir="${build.dir}"/>
</target>
<!-- compile -->
<target name="compile" depends="clean" description="o Compile the code">
<javac
srcdir="${src.dir}"
destdir="${cls.dir}"
deprecation="true"
debug="false"
optimize="false">
</javac>
</target>

<!-- copy needed files to build so that we could distribute it -->

<target name="copyfiles" depends="clean">
<copydir src="${cls.dir}" dest="${build.dir}/WEB-INF/classes"></copydir>
<!-- <copyfile src="MessageResources.properties" dest="${build.dir}//WEB-INF/classes/MessageResources.properties"/>-->
<copy todir="${build.dir}">
<fileset dir="${web.dir}"></fileset>
</copy>
</target>

<!-- deploy the application as a war file -->
<target name="web.package" depends="copyfiles" description="Packages the Web classes">
<echo>Generating WAR</echo>
<war warfile="${war}" webxml="${war.web.xml}">
<fileset dir="${build.dir}" includes="**" excludes="${war.web.xml}"/>
</war>
</target>

<target name="deploy" depends="web.package" description="Deploys WAR on Jboss Server">
<echo>Deploying struts2Proj.war</echo>
<copy file="${war}" todir="${jboss.deploy.dir}" overwrite="true"/>
</target>

</project>


That should be it I guess.

Note: We dont need WTP plugin for eclipse if we use WSAD (from IBM) or MyEclipse (from Genuitec). If we use MyEclipse, we dont require even the build.xml as it has a wizard option to deploy our application in exploded or packaged mode in our respective application or web servers


Thanks,

Chandra


View All Comments | View Tutorial
Related Tutorial and Articles
Struts Questions

struts2 - Struts
struts2  hello, am trying to create a struts 2 application that allows you to upload and download files from your server, it has been challenging for me, can some one help  Hi Friend, Please visit the following 

Struts 2 Tutorials

Struts 2 Hello World Example
Struts 2 Hello World Example - Video Tutorial that shows how to create Hello... how to develop 'Hello World' application in Struts 2 framework. We are developing this tutorial using the Eclipse IDE. This Struts 2 video tutorial 

Struts Questions

tiles 2 with struts2 - Struts
tiles 2 with struts2   i wnat any one to guide me : how can i integrate struts2 with tiles2 i searched for long time on the web i see many code and configurations but every one of them has a problem can any one give me   

Struts 2 Tutorials

Struts 2.1.8 Hello World Example
Struts 2.1.8 Hello World Example     ... to develop simple Hello World example in Struts 2.8.1. You will also learn how... started with the Hello World tutorial using Struts 2.1.8: The web configuration 

Struts Questions

struts2
struts2  dear deepak sir plz give the struts 2 examples using applicationresources.properties file 

Struts Questions

Struts2
Struts2  Hi, I need a solution for displaying success message in same page in struts2. how to redirect same page in struts2.Please help me.   hi friend, To know how redirect action can be done in struts 2 you can go 

Framework Questions

Struts 2
Struts 2  we can extend DispatchAction class to implement a common session validation in struts 1.x. how to do the same in the struts2 

Struts-Tutorials

Struts 2 Hello World Application Example, Learn how to develop Hello World application in struts 2.
Struts 2 Hello World - Developing Hello World Application...; In this section we will develop Hello World application based on Struts 2 Framework. Our Struts 2 Hello World application is your first step towards 

Struts Questions

Struts2 Helloworld problem -Please help - Struts
Struts2 Helloworld problem -Please help  Hi I am a beginner in Struts2. I tried some HelloWorld example in Struts2, to understand. But due to some... using Eclipse Europa, tomcat6.0.18. The following are the steps that I 

Framework Questions

struts2 - Framework
Hello REad Carefully....... 1)Open Eclipse, Then create a webProject...struts2  thnx ranikanta i downloaded example from below link http://www.roseindia.net/struts/struts2/struts-2-hello-world-files.shtml i m 

Struts-Tutorials

Developing JSP, Java and Configuration for Hello World Application
and required configuration files for our Struts 2 Hello World application. Now... on the "Run Struts 2 Hello World Application" link on the tutorial...;Struts 2 Hello World Application!</title> </head> <body> 

Struts Questions

struts2+hibernate - Struts
struts2+hibernate  How to use hibernate 3 with struts 2 application? kindly reply with example 

Struts Questions

Struts2 connection pooling - Struts
Struts2 connection pooling  Dear Friends , How to make connection pooling in "Struts 2 

Struts Questions

Struts2 connection pooling - Struts
Struts2 connection pooling  Dear Friends , How to make connection pooling in "Struts 2 

Framework Questions

struts2 - Framework
and mainly i want support with tiles(struts 2)...now which struts2 jars i have to use...struts2  Hello, I am sathish.. I got problem in stuts2 ? Do tomcat5.5 support struts2 ? Now , currently my application running on tomcat 6 

Framework Questions

struts2 - Framework
struts2  Hello, I am sathish i got one problem with struts2 framework...i want to create a jsp page in struts2 i need two buttons in tha jsp...; Hi Satish, Struts 2 uses tiles internally and hence if you dont specify 

Struts Questions

Struts2 Validation Problem - Struts
in the browser having the example of handling the error in struts 2. http... information on Struts 2 visit to : http://www.roseindia.net...Struts2 Validation Problem  Hi, How to validate field 

Struts Questions

how to prepopulate data in struts2 - Struts
how to prepopulate data in struts2  I wanted to show the data from database using Struts 2 

Struts Questions

Struts 2 - Beganner
Struts 2 - Beganner  Hi ! I am new to Struts2 and I need clarification over Difference between Action Proxy and Action Mapper in struts2 and When both perform their activity?????? Many Thanks Venkateshlu 

Struts Questions

New to struts2
New to struts2   Please let me know the link where to start for struts 2 beginners   Struts 2 Tutorials 

Struts Examples

Struts 2, JPA and Hibernate Training
2 architecture Struts 2 Action Developing hello world application in Struts 2 Struts 2 configuration files Deploying Struts and testing struts 2 hello world application Hibernate Introduction 

Struts Questions

Struts 2 + hibernate
Struts 2 + hibernate  How to integrate Struts 2 and Hibernate? Its... struts 2 and hibernate. Struts2.2.1 and hibernate integration application Integrate Hibernate to struts2 

Struts 2 Tutorials

Introduction to Struts 2 Framework
and installing Struts 2 Writing and testing your first Hello World Application using... tutorial I will teach you how to develop Hello World application in Struts 2.... Welcome to the world of web application development using Struts 2 Framework 

Struts Questions

Help in Struts2
Help in Struts2  Hi, in struts 2 how to get the values from db and show in jsp page using display tag or iterator tag thanks in advance 

Struts Examples

Struts 2 Tutorial
and configure it as our development server.     Struts 2 Hello World... In this section we will create directory structure of our Struts 2 Hello World application based on Struts 2 framework. Our Struts 2 Hello World application 

Struts Questions

Value Retain in struts 2 - Struts
Value Retain in struts 2   Hi, I am trying to retain values in .jsp pages using struts2 tag.Can anyone help with the solution. Thanks in advance!  hi You go the following url. Get your solution 

Struts Questions

Struts2
Struts2  Hi I am using struts 2,In struts2 architecture ,I couldn't understand the purpose of ActionMapper and ActionProxy.My Question is,when the request comes into the picture,the filterdispatcher consult the ActionMapper 

Struts Questions

struts2 - Struts
Struts2 and Ajax Example  how to use struts2 and ajax 

Struts Questions

Struts 2 Radio Button
Struts 2 Radio Button  I have a search functionlaity where i have two radio buttons and I am using Struts2 tag.I want first rado button to be selected by default.But when i select the second radio button and hit on search 

Framework Questions

STRUTS2
STRUTS2  sir but my question is using ApplicationResources.properties in STRUTS 2.i cant get the values into my application.but in the exmple given at roseindia,u cant use the properties file.i use actionclass-validation.xml 

Struts Examples

Struts 2 configuration files
Struts 2 configuration files       For developing "Hello World" application you need the following files...: Struts 2 uses the struts.xml file for configuring the application. Create 

Struts Questions

struts 2 problem with netbeans - Struts
struts 2 problem with netbeans  i made 1 application in struts2 with netbeans but got one errror like There is no Action mapped for namespace... is wrong between this don't knows 1) 2) /index.jsp 

Struts Questions

Struts 2 Tutorial
Struts 2 Tutorial  Hi, Iââ?¬â?¢m taking your Struts 2 Tutorial at http://www.roseindia.net/struts/struts2/struts-2-hello-world-files.shtml. When I open http://localhost:8080/struts2tutorial/ under ââ?¬Å?Testing Struts 2 Hello 

Struts Questions

struts2 - Struts
struts2  how to pre populate the fields using struts2 from the database 

Framework Questions

tiles using struts2
tiles using struts2  hello, im implementing tiles using struts2 in eclipse. i am having following problem occurred during execution.i have created all neccessary settings of jar files. plz help me 

Struts Questions

struts2 properties file
struts2 properties file  How to set properties file in struts 2 ?   Struts 2 Format Examples Struts 2 Tutorial 

Struts Examples

Struts 2 Training
Struts 2 Training       The Struts 2 Training for developing enterprise applications with Struts 2 framework. Course Code: STRUS-2 Duration: 5.0 day(s) Apply for Struts 2 Training Lectures 

Struts Examples

Introduction to Struts 2
Introduction to Struts 2       This section provides you a quick introduction to Struts 2 framework. This section we are discussing the new features, struts 2 basics and architecture 

Struts Questions

Diff between Struts1 and struts 2? - Struts
describes some differences between struts1 and struts2 Feature Struts 1 Struts 2...Diff between Struts1 and struts 2?  What are the difference in between Struts 1 and Struts 2?  Hi Gaurav There is a big difference 

Struts-Tutorials

Deploying Struts and testing struts 2 hello world application
Deploying Struts and testing struts 2 hello world application   ...\struts2\struts2helloworld\WEB-INF\src> Testing Struts 2 Hello.../ and then select "Run Struts 2 Hello World Application" from the list.  

Struts Questions

Cannot run Struts 2 on IntelliJ Project - Struts
Cannot run Struts 2 on IntelliJ Project  I have been trying to run Struts 2 on IntelliJ IDEA for the past two weeks, can anyone help with basic example? starting from struts 2 configuration and installation. its very urgent 

Struts Questions

Struts 2 File Upload error
Struts 2 File Upload error  Hi! I am trying implement a file upload using Struts 2, I use this article, but now the server response the error... Upload In Struts2 Thanks 

Struts Questions

Struts 2 problem - Struts
Struts 2 problem  Hello I have a very strange problem. I have an application that we developed in JAVA and the application works ok in Windows... seemed to worked fine, until the user reported to us a problem. After doing 

Struts Questions

Struts2 - Struts
Struts2  Hi, I am using doubleselect tag in struts2.roseindia is giving example of it with hardcoded values,i want to use it with dynamic values. Please give a example of it. Thanks 

Struts Questions

My first struts 2 program
My first struts 2 program  Hi, Please help me for my first struts 2... from one page to another. Details: I am trying my first Struts 2 example...: Struts2 Tutorials Thanks 

Struts-Tutorials

Struts 2 Guide
created the directory structure and ant build file for our Struts 2 Hello World... and deployment of "Hello World" quick Struts 2 guided tutorial. Example... "Hello World" application in Struts 2. This is your first step towards 

Struts Questions

select tag in Struts2 to handle Enums - Struts
! For more information on Select Tag in Struts 2 visit...select tag in Struts2 to handle Enums  I have an java enum in my object. I am trying to set its values from struts2 select tag. I tried with "#list 

Struts Questions

if we have 2 struts-config files - Struts
, No we cannot have 2 struts-config.xml files. In one case we can use 2 struts-cofig.xml files with some minor change in the file name. i e we can use...if we have 2 struts-config files  if we have declared 2 struts 

Struts Questions

Struts2 ComponentTagSupport - Struts
Struts2 ComponentTagSupport   I am working on struts2 custom tags using ComponentTagSupport. I am referring to this link http... populateParams() { super.populateParams(); HasPermission hello 

Struts Questions

jsp to struts 2 action conversion problem - Struts
jsp to struts 2 action conversion problem  i have one jsp page that includes 3 other jsp pages(using RequestDispactcher).how to convert that jsp page to a struts2 action?among that one jsp page is wrritten using jpivot,wct tags 

Struts Questions

Struts2 Filter not getting initialised in WAS 8.0
in WAS 8.0 server settings. The required struts 2 jar files are also in the WEB-INF/lib...Struts2 Filter not getting initialised in WAS 8.0  Hi All, Am facing a problem in the Struts2 initialisation part. My application is developed 

Free Magazine

Struts2
; Why Struts 2 The new version Struts 2.0 is a combination of the Sturts action... been resolved in the struts 2 framework. Most of the Struts 2 classes are based on interfaces and most of its core interfaces are HTTP independent. Struts 2 

Struts-Tutorials

Struts 2 - History of Struts 2
Struts 2 History       Apache Struts...; Strut2 contains the combined features of Struts Ti and WebWork 2 projects... of WebWork2 has changed to Struts2. Hence, Apache Strut 2 is a dynamic, extensible 

Struts Questions

Struts2 - Struts
Struts2  S:select tag is being used in my jsp, to create a drop down list. The drop down works very well in Mozilla, but in IE7 it behaves very weird, meaning that the drop down wen clicked it just jumps out from the first row 

Struts Examples

Detailed introduction to Struts 2 Architecture
Detailed introduction to Struts 2 Architecture       Struts 2 Framework Architecture In the previous section we learned... components of Struts 2 framework. How Struts 2 Framework works? Suppose you 

Framework Questions

Captcha in Struts2 Application
of using Captcha in Struts 2 application. We have provided the code and given the detailed description of using captcha in Struts 2 web application. Read at Java Captcha in Struts 2 Application. Thanks 

Programming Tutorials

Struts 2 Application
Struts 2 Application Developing user registration application based on Struts 2 Framework This Struts 2 Application is a simple user registration application that will help you to learn how to develop real world applications using Struts 

Struts Examples

Struts 2 Eclipse Plugin
Struts 2 Eclipse Plugin       This page contains the examples and the list of plugins that are available for Struts 2... know the Eclipse plugin for Struts 2, kindly post in the following comment box 

Struts 2 Tutorials

Struts 2 Ajax
Struts 2 Ajax       In this section, we explain you Ajax based development in Struts 2. Struts 2 provides built... to the Struts 2 framework. Ajax allows the developers to develop GUI like web 

Java Beginners

struts2 upload image public_html
struts2 upload image public_html  How to upload images in public_html file in Struts 2 application. Thanks in advance 

Struts Questions

dwr with struts2 - Struts
dwr with struts2  CAn u help me how to use dwr with struts2 

Struts 2 Tutorials

Struts 2 Session Scope
Struts 2 Session Scope       In this section, you will learn to create an AJAX application in Struts2...; <struts> <!-- Rose India Struts 2 Tutorials --> 

Struts Questions

Struts 2
Struts 2  I am getting the following error.pls help me out. The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the associated filter. Struts tags are only usable when the request has 

Struts Questions

Generating dynamic fields in struts2
Generating dynamic fields in struts2  Hi, I want generate a web page which should have have some struts 2 tags in a group and a "[+]" button.... Thanks.   Hi Friend, Please visit the following link: Struts2 Tutorial 

Framework Questions

struts2 - Framework
struts2  i m beginner for struts2.i tried helloworld program from.../struts/struts2/struts-2-hello-world-files.shtml i m using JDK 1.6 and Tomcat 6.0 in my application. thnx   Hello The Said code You download 

Struts-Tutorials

Struts 2, JPA and Hibernate Training
focuses on how to develop an application by using struts 2. Struts2 is used... Struts 2, JPA and Hibernate Training       The Struts 2, JPA and Hibernate Training for developing enterprise applications 

Struts Questions

How to make a chat application using Struts 2 ?
How to make a chat application using Struts 2 ?  Hello, I'm working on my final year project. i've to add chat application in that. how it can be done? 'm using eclipse for that.... plzzz reply 

Struts Questions

Struts2 UI - Struts
Struts2 UI  Can you please provide me with some examples of how to do a multi-column layout in JSP (using STRUTS2) ? Thanks 

Struts Questions

struts2 folder struture - Struts
struts2 folder struture  Hi, I just want to know the exact folder structure required for the struts2 application? Its urgent 

Framework Questions

Struts 2 Validation
Struts 2 Validation  Hello,I have been learning struts. I have a problem in the validator tag. I have tried tutorials and got those. I have to add the Users to the database. So, have implemented the code. See attachement 

Blog

Sitemap Struts Tutorial
Struts 2.1.8 | Struts 2.1.8 Show case | Struts 2.1.8 Hello World | Struts Login Application | Struts 2 | Struts1 vs Struts2 | Introduction... directory Structure | Writing Jsp, Java and Configuration files | Struts 2 xml 

Struts 2 Tutorials

Struts2 Actions
. However with struts 2 actions you can get different return types other than... name of the action to be executed. Struts 2 processes an action...Struts2 Actions       When 

Struts Questions

Struts 2 - Validation - Struts
Struts 2 - Validation annotations  digging for a simple struts 2 validation annotations example 

Struts Questions

tags in struts2
tags in struts2  Hello I am using simple tags in struts2. Like..." pageEncoding="ISO-8859-1"%> <%@ taglib prefix="s" uri="/struts.../struts/struts2/struts2-login.shtml More Struts2 Tutorials 

Struts Examples

Why Struts 2
Why Struts 2       The new version Struts... of design problem of struts1 framework that has been resolved in the struts 2 framework. Most of the Struts 2 classes are based on interfaces and most of its 

Struts Questions

Struts2 tags - Struts
Struts2 tags  Q1. i define a statement like " style= "visibility:hidden" in my struts2. this statement is not working. Can you please tell me the solution of this. Q2. if above code can not work then how can i do 

Struts Questions

query on struts2 - Struts
query on struts2  I am using struts2 for my application.i have a form that contains 'select' tag, for this i am getting values form DB. The problem is after i am submitting the form it is giving the following error 

JSP-Tutorials

Struts 2 Actions
Struts 2 Actions       In this section we will learn about Struts 2 Actions, which is a fundamental concept in most of the web application frameworks. Struts 2 Action are the important concept in Struts 2 

Struts Questions

struts 2 tabbedpanel - Struts
struts 2 tabbedpanel  Hi Friend do I change the background color of a tab? bye bye 

Struts Questions

contains for list in struts2 - Struts
contains for list in struts2  Is there any way to check in the list or for existence of an enum ? Something like list.contains(string). iterating over list I want to do something like Display x display y 

Struts Questions

Struts2 blank application - Struts
Struts2 blank application  Hi I am new to struts2 and i am trying to run the strutsblank application by following the following Link; http://www.roseindia.net/struts/struts2/index.shtml As per the instructions given 

Struts Questions

using displaytag with struts2 - Struts
using displaytag with struts2   Hi, i am using struts2 framework... it more simple and better to use than struts2 tag to generate the output on web page. Now, no doubt that struts2 is a very powerful framework to develop any 

Struts Questions

STRUTS 2 Could not find action or result
STRUTS 2 Could not find action or result  hiii..i am new to struts 2...;struts2</filter-name> <filter-class>...; <filter-mapping> <filter-name>struts2</filter-name> < 

Struts Examples

Struts1 vs Struts2
;   Feature Struts 1 Struts 2 Action classes.... While in Struts 2, an Action class implements an Action interface, along with other interfaces use optional and custom services. Struts 2 provides a base 

Struts Questions

Struts 2 RequiredFieldValidator - Struts
What is Struts 2 RequiredFieldValidator? Need an Example or Code  What is Struts 2 RequiredFieldValidator? Need an Example or Code on Field Validation in Struts 2.  Please follow the following instruction:1. index.jsp 

Struts Questions

tree tag in struts2 - Struts
tree tag in struts2  I have an arraylist of values retrieved from the database and i want all the values in the arraylist to be viewed in a subtree node. like:::: COUNTRYLIST has values INDIA,UK,USA. INDIA,UK,USA 

Struts Questions

HTTP Status 404 - /web/login/showLogin.action Error in Struts 2 - Struts
Eclipse 3.4 Struts 2 Now my question is I am trying to implement the login...HTTP Status 404 - /web/login/showLogin.action Error in Struts 2  Hi.../all the jars required for struts and all other thing web(web project starts from 

Struts Questions

Migrating from struts1to struts2 - Struts
Migrating from struts1to struts2  Hi, I have found the best tutorial for struts in this Roseindia site. So thank you very much for your... that application to struts2? If you can provide the source code it will be great. Regards 

Struts Questions

Struts 2 Radio without Label
Struts 2 Radio without Label  I Use a s:radio tag to create a grid to choice one option, but when i render my jsp the value of the radio is showed...;Hello Friend, Please go through the following link: Visit Here Thanks 

Struts Examples

Struts2 Actions
is usually generated by a Struts Tag.    Struts 2 Redirect Action In this section, you will get familiar with struts 2 Redirect action and learn to use it in the struts 2 application.    

Training

Struts2 Training
development and extensibility. Apply for Struts 2 Training Strut2 contains the combined features of Struts Ti and WebWork 2 projects that advocates higher... Day--2 Struts2 Actions Simple Action Redirect 

Struts Questions

struts 2 Application starting error - Struts
struts 2 Application starting error  Hello Sir/Madam, Recently i have installed tomcat 5.5.23 on my window machine with XP, then i make an small application which i have attached with name Struts2Application, but after 

Struts Questions

regarding struts 2
regarding struts 2   is it not possible to get values from applicationresources.properties into our application in struts 2 

Struts Questions

struts 2 testing
struts 2 testing  can i get an example for struts 2 action class unit test 

Struts Questions

Struts 2 online tutorial
Struts 2 online tutorial  Where to learn struts 2 online tutorial? Is there any good tutorials on roseindia.net for learning struts 2 online tutorial?   Yes, We have many tutorials for learning Struts 2 online through 

Struts 2 Tutorials

Struts 2 hello world application using annotation
Struts 2 hello world application using annotation Annotation...;)}) An annotation Based Hello World example is given below which takes user name as input... given below Hello World Example1 Hello World Example2 

Struts Questions

How to Assign struts2 property to jsp variable
visit the following link: Assign struts 2 property to JSP The above link will provide you a good example that will illustrate you struts property tag easily...How to Assign struts2 property to jsp variable  In Struts2 <s 

Struts Questions

Achor tag. Struts2 code - Struts
Achor tag. Struts2 code  Hi All, How to send the values form one jsp page to another using anchor tag (or any which is similar to achor) in Struts? Please help me. I am waiting for the answer. Regards, Sandeep 

Struts Questions

Cohabitation struts 1 and 2 - Struts
Cohabitation struts 1 and 2  Hi, I have a problem with the cohabitation of struts 1 and 2. I work on a web application which used struts 1. But i must add some functionality in struts 2. When i modify my web.xml file 

Struts Questions

Struts2 Internationalization
Struts2 Internationalization  Hi How to use i18n functionality for indian languages in struts2 ? I am able to use french and english but none... the following links: http://www.roseindia.net/struts 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.