active questions tagged struts - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T06:52:53Zhttp://stackoverflow.com/feeds/tag/strutshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/988494/finding-struts-version0Finding Struts version?Nocturne2009-06-12T19:12:44Z2009-12-19T02:00:03Z
<p>What is the easiest way to find the Struts library version? I'm adding Struts libraries to an generic eclipse project, and need to be able to differentiate between versions.</p>
<p>(Other libraries like Spring have a getVersion() call)</p>
<p>I can always read the jar manifest, but I'm looking for an easier way.</p>
http://stackoverflow.com/questions/181966/tiles-in-struts-project-better-than-freemarker4tiles in struts project - better than freemarker?GDMT2008-10-08T09:47:05Z2009-12-17T23:02:40Z
<p>I want to use a template engine in a struts application and would like to know if using TILES can be recommended instead of FREEMARKER or VELOCITY.</p>
http://stackoverflow.com/questions/1924457/struts-2s-inbuit-validations-on-list-items0Struts 2's inbuit Validations on List itemsunknown (google)2009-12-17T20:44:56Z2009-12-17T20:44:56Z
<pre><code><s:iterator value="listOfValues" status="row">
<s:textfield name="listOfVoObjects[${row.index}].itemId"/>
<s:textfield name="listOfVoObjects[${row.index}].itemName"/>
</s:iterator>
</code></pre>
<p>In this scenario, does anybody know how to do validations on each itemId and itemName in the listOfValues when the form is submitted using the XML validations in Struits2 ??</p>
<p>Thanks in Advance,
`A</p>
http://stackoverflow.com/questions/1631526/forwarding-in-struts0Forwarding in STRUTSunknown (google)2009-10-27T15:17:55Z2009-12-16T07:11:30Z
<p>I am forwarding to an action by giving as</p>
<pre><code><forward name="sample" path="/sample.do?button=default" />
</code></pre>
<p>i want to add one more attribute in path and i used: </p>
<pre><code><forward name="sample" path="/sample.do?button=default&value=text" />
</code></pre>
<p>...and I am getting org.xml.sax.SAXParseException</p>
<p>Any solution for it?</p>
http://stackoverflow.com/questions/520329/using-prefix-as-parameter-inf-a-forward-within-a-action-mapping0Using prefix as parameter inf a forward within a action mappingmassaoh2009-02-06T13:43:39Z2009-12-16T06:47:42Z
<p>There's any way to use a prefix as a paramter or in the path of a forward like:</p>
<p></p>
<p>????</p>
http://stackoverflow.com/questions/1001183/using-jstl-within-jsp-pages-in-struts-based-web-app0Using JSTL within JSP Pages in Struts based web appria2009-06-16T12:29:51Z2009-12-15T08:26:49Z
<p>I have a Struts 1.2 based Web App which uses lot of scriptlet code in the JSP page, I wish to clean up the code by using JSTL.The Servlet Specification Level: 2.3 and JSP Specification Level: 1.2.
I am using WSAD 5.1.</p>
<p>I tried using <code><c:if></c:if></code> tag, but I get the following error on building the project.
"JSP Translate: unable to load if tag"</p>
<p>I have included the taglibs element for this tag library and also the TLD file in the appropriate folder.</p>
<p>I guess the container is not able to locate the tag handler.</p>
<p>It would be great if someone could share their thoughts on this.</p>
http://stackoverflow.com/questions/1571611/how-to-access-struts-dynavalidatorform-properties-form-jsp0How to access Struts DynaValidatorForm properties form JSPSergio del Amo2009-10-15T10:54:10Z2009-12-12T08:01:55Z
<p>I have a struts action which populates a field. </p>
<pre><code>public ActionForward appForm(ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) {
DynaValidatorForm dyna = (DynaValidatorForm) form;
String identifier = (String) request.getParameter("id");
ApplicationDTO app = manager.getApplication(identifier);
dyna.set("firstName",app.getFirstName());
return (mapping.findForward("application.success"));
}
</code></pre>
<p>The form bean looks like: </p>
<pre><code><form-bean name="ApplicationForm" type="struts.ApplicationForm">
<form-property name="id" type="java.lang.String" initial="0" />
<form-property name="firstName" type="java.lang.String" />
...
..
.
</form-bean>
</code></pre>
<p>ApplicationForm extends DynaValidatorForm and it does some validation.</p>
<p>How do I access a struts form property value inside my jsp. </p>
<pre><code><html:text property="firstName" styleId="firstName" value="TODO Add code to access the form property fistName END TODO"/>
</code></pre>
<h1>SOLUTION</h1>
<p>user the <em>name</em> attribute within the <em>html:text</em> tag. Name attribute specifies the name of an object (in any scope) whose field, specified by the property attribute will be used to populate this control with data. Example: </p>
<pre><code><html:text property="firstName" styleId="firstName" name="ApplicationForm"/>
</code></pre>
http://stackoverflow.com/questions/1887777/take-survey-using-struts0Take survey using strutskarthickbabu2009-12-11T12:30:13Z2009-12-11T12:30:13Z
<p>I want to design survey project using struts. When super admin post survey mean it will be display to all users. But when sub admin post survey mean it will be display to particular group users like team1/team2 etc..please anybody help me?</p>
http://stackoverflow.com/questions/157896/zk-ajax-framework2ZK ajax frameworkDMTG2008-10-01T14:30:23Z2009-12-10T23:06:56Z
<p>Can ZK easily be integrated in a struts web application?</p>
http://stackoverflow.com/questions/1477407/framework-recommendation-request-spring-struts-j2ee0Framework Recommendation request: spring, struts, j2ee?Jack BeNimble2009-09-25T13:52:22Z2009-12-10T10:00:02Z
<p>The last time I looked at web applications, the consensus seemed to be Struts/J2EE. Now, it looks like Spring MVC/J2EE or Struts/J2EE are both viable solutions. Is this generally correct? Or is Spring MVC now the consensus choice over Struts? We have at least one guy who has worked with Struts before and wants to go with that. I'm more familiar with Struts as well, having reviewed in the past. Also, is J2EE still considered the viable solution for handling remote components? Or are there alternatives? </p>
http://stackoverflow.com/questions/1488442/how-to-pass-parameter-to-a-javascript-function-using-struts-taglib0how to pass parameter to a javascript function using struts taglib?Umar2009-09-28T17:56:04Z2009-12-10T09:00:01Z
<p>Hi</p>
<ol>
<li><p>I have a javascript function <code>updateHiddenField(value)</code> that gets a value as parameter and then sets this value as the value of a hidden field.</p></li>
<li><p>I have a JavaBean <code>flight</code> with parameters <code>id</code> and <code>flightNo</code>.</p></li>
</ol>
<p><strong>Problem:</strong> How can I pass the parameter <code>id</code> of JavaBean <code>flight</code> to the js function <code>updateHiddenField(value)</code> when using <code><html:link></code> tag(struts)?</p>
<pre><code><html:link href="javascript:updateHiddenField(idToPassHere)"><bean:write name="flight" property="flightNo"/></html:link>
</code></pre>
<p>Thanks
Umar</p>
http://stackoverflow.com/questions/1872542/how-can-a-tiles-template-get-the-of-child-nodes-of-a-tilesput-typestring0How can a Tiles template get the # of child nodes of a < tiles:put type="string" > element?T.R.2009-12-09T09:07:31Z2009-12-09T09:07:31Z
<p>I have:</p>
<pre><code><tiles:put name="MenuItems" type="string">
<li onclick="navigateUrl('#');">Test 1</li>
<li onclick="navigateUrl('#');">Test 2</li>
</tiles:put>
</code></pre>
<p>In my Template, I have:</p>
<pre><code>function MyFunc(){
if(document.getElementById("menuItemList").childNodes.length>1){
//code
}}
</code></pre>
<p>And</p>
<pre><code><ul id="menuItemList"><tiles:insert attribute="MenuItems"/></ul>
</code></pre>
<p>I need to get the number of li elements (as attempted with javascript).<br>
It works fine on the first page, but fails when a new page is loaded with the same template, but a different number of < li > tags. Is there a better, (tiles-based) way to get the number of < li > elements in the < tiles:put > tag from within the Template Definition?</p>
http://stackoverflow.com/questions/1870373/logiciterate-in-struts-1-3-6-netbeans-6-7-10logic:iterate in struts 1.3.6 (netbeans 6.7.1)milovanderlinden2009-12-08T22:34:45Z2009-12-08T22:34:45Z
<p>Today I noticed something strange.</p>
<p>I have an action:</p>
<pre><code>public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
startActionForm myForm = (startActionForm) form;
myForm.setHelpUrl("nanoo");
request.setAttribute("testitem", "test");
//generate a loop for the number of weeks
Integer[] weekArray = new Integer[myForm.getWeken()];
for (Integer i = 0; i < weekArray.length; i++) {
weekArray[i] = i+1;
}
Collections.reverse(Arrays.asList(weekArray));
request.setAttribute("weekArray", weekArray);
request.setAttribute("form", myForm);
return mapping.findForward(SUCCESS);
}
</code></pre>
<p>That I pull through a in a jsp page like this</p>
<pre><code><logic:iterate id="element" name="weekArray">
<li class="current">
<a title="Show last <bean:write name="element"/> weeks"
href="somewhere.do?weken=<bean:write name="element"/>">
last <bean:write name="element"/> weeks</a>
</li>
</logic:iterate>
</code></pre>
<p>That should result in a full array representation in my webpage. Instead; it breaks! It even stops my page from rendering beyond the list..</p>
<pre><code><li class="current">
<a title="Show last 17 weeks"
href="somewhere.do?presentation=&week=&weeks=17&&&">
last 17 weeks</a>
</li>
<li class="current">
<a title="Show last 16 weeks"
href="somewhere.do?presentation=&week=&weeks=16&&&">
last 16 weeks</a>
</li>
<li class="current">
<a title="Show last 15 weeks"
href="somewhere.do?presentation=&week=&weeks=15&&&">
last 15 weeks</a>
</li>
<li class="current">
<a title="Show last 14 weeks"
href="somewhere.do?presentation=&week=&weeks=14&&&">
last 14 weeks</a>
</li>
<li class="current">
<a title="Show last 13 weeks"
href="somewhere.do?presentation=&week=&weeks=13&&&">
last 13 weeks</a>
</li>
<li class="current">
<a title="Show last 12 weeks"
href="somewhere.do?presentation=&week=&weeks=12&&&">
last 12 weeks</a>
</li>
<li class="current">
<a title="Show last 11 weeks"
href="somewhere.do?presentation=&week=&weeks=11&&&">
last 11 weeks</a>
</li>
<li class="current">
<a title="Show last 10 weeks"
href="somewhere.do?presentation=&week=&weeks=10&&&">
last 10 weeks</a>
</li>
<li class="current">
<a title="Show last 9 weeks"
href="somewhere.do?presentation=&week=&weeks=9&&&">
last 9 wee
</code></pre>
<p>And then it stops.</p>
<p>Can it be that logic tries to construct a string up to the end of logic before trying to parse it? Is there a workaround or am I doing something wrong?</p>
<p>My IDE is netbeans 6.7.1 and my struts is 1.3.8 (netbeans default)</p>
http://stackoverflow.com/questions/1733985/setting-the-default-value-in-struts21Setting the default value in Struts2 Aditya R2009-11-14T11:24:02Z2009-12-08T17:55:39Z
<p>Hi all,</p>
<p>I am setting the value(kind of default value) for a drop down select value from action class in a page(given below). When the page loads the value is beig displayed but the other elements of the dropdown list is not displayed. here is the code. </p>
<pre><code>Inside the action class
if(getTypeId() == null){
String typeId = request.getParameter("typeId");
setTypeId(typeId);
}
</code></pre>
<p>Inside the jsp page</p>
<pre><code> <tr>
<s:select label="To" headerKey="-1" headerValue="--Please Select--" name="typeId" list="typesofteam" />
</tr>
</code></pre>
<p>What I am trying to do is create a single page for sending as well as saving the mail as draft. The code works fine for composing the message ie I am able to access the selected item from the action class. But I don't know how to set the drop down element from the action class. The above method just sets the value but the other elements in the list is not displayed.</p>
<p>I will be very grateful for any help on this.</p>
<p>Thanks,
Aditya</p>
http://stackoverflow.com/questions/1838215/xss-security-issue0XSS security issueHarish2009-12-03T07:12:51Z2009-12-03T16:55:13Z
<p>When using Cross Site Scripting - XSS in a J2EE struts 2.0.9 application . When I put <code><Script></code> tag in the URL it is executing the JavaScript which is a security threat. Is there any solution to overcome this problem apart from moviing to higher version of Struts.</p>
http://stackoverflow.com/questions/1824901/handle-utf-8-datastring-velocity-struts0Handle UTF-8 DataString ( Velocity/Struts )Niha Kush2009-12-01T09:03:28Z2009-12-01T15:15:43Z
<p>Hey guys, lately, I use the combination of Struts and Velocity frameworks to create some website, the problem is that when I tried to input UTF-8 Japanese character, say, a field name, which I putted in the value of "索", then I click submit ( using ), the data would be passed to an AddForm, which I have the String name field to handle the name field. Problem is that, the received string is some strange letter than the expected string "索", I set all the workspace to UTF-8, in velocity.property ( input.coding/outputcoding = UTF-8 ), content-type/charset = UTF-8, but it always returns strange string, I could set the name field directly with : public void setName(String name) { this.name = "索" } and the confirm Add work fine, but not with normally insert it to name field on the addForm, someone could point me out what was wrong ? Thanks for patient reading :D.</p>
http://stackoverflow.com/questions/1809181/create-pdf-in-struts-from-data-on-screen0Create PDF in Struts from data on screendb832009-11-27T14:46:55Z2009-12-01T12:13:09Z
<p>Hi,</p>
<p>I am able to create a simple pdf using iText api inside a struts action class.<br>
The data that should be passed into the pdf is generated on screen based on user search parameters.<br>
What I am wondering is how I can pass the data into the struts action so it can be displayed in the pdf?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1337463/web-application-session-cache0web application session cache neverland2009-08-26T21:01:08Z2009-12-01T03:00:15Z
<p>I want to cache data for a user session in a web application built on struts.What is the best way to do it .Currently we store certain information from the DB in java objects in the user's session .Works fine till now but people are now concerned about memory usage etc.
Any thought on how best to get around this problem.</p>
http://stackoverflow.com/questions/1819816/struts-1-2-9-action-chaining1Struts 1.2.9 Action ChainingGearóid2009-11-30T13:26:37Z2009-11-30T13:43:20Z
<p>I'm having trouble calling a method in one Struts action from a method in another Struts Action (I've been told that this is possible).</p>
<p>I'm working with two Struts DynaValidatorForms - one is used to create an entry, the other is used purely for viewing the action (plus editing, deleting etc).</p>
<p>I have two seperate Struts Action files: CreateAction.java (which has the create() method) and ViewAndEditAction.java (which contains the view() and edit() methods). </p>
<p>What I would like to do is to invoke the view() method in the latter action after the create() method in the former action has completed.</p>
<p>I've looked into Action Chaining but haven't been able to find a solution to my problem.</p>
http://stackoverflow.com/questions/1801403/ive-written-a-java-getting-started-tutorial-where-would-be-a-good-site-to-post0I've written a java getting-started tutorial, where would be a good site to post it for checking?Chris2009-11-26T03:36:08Z2009-11-29T22:26:15Z
<p>Hi all,</p>
<p>For our company's internal training, I'm writing a java getting-started tutorial. This will go all the way from installing eclipse through to writing a working demo application with Struts, Hibernate, Sitemesh, and Sql server.</p>
<p>Now, admittedly i'm new to Java (although have good c# experience) - where would be a good site to post it for checking? I'm thinking it may have some value to the community as a ground-up getting started tutorial, so if one of the sites has people willing to check that i'm not violating some best practices, i'd be willing to let it be published as a tutorial.</p>
<p>Cheers</p>
<p>-edit-</p>
<p>Also, when getting people to check the first cut, shall i simply supply the code, or the whole tutorial?</p>
<p>-edit-</p>
<p>Here's the first cut of the tutorial:</p>
<p><a href="http://splinter.com.au/blog/?p=194" rel="nofollow">http://splinter.com.au/blog/?p=194</a></p>
<p>-edit-</p>
<p>In the end, neither dzone or javaranch gave any answers: the best help came from the coding reddit.</p>
http://stackoverflow.com/questions/1599430/struts-help-needed0Struts help neededHarish2009-10-21T08:23:05Z2009-11-28T15:00:03Z
<p>Hi,
I have an issue.I need to run a query to get a data say test from a table t.The query currently runs in an action class.Its taking 20 seconds to run.Now my problem is not all times t is going to have value and the users will be annoyed if I make them wait to check whether t exists or not.</p>
<pre><code>select t from table
if(t!=null&&!(.equals("")))
{
return (mapping.findForward(result));
}
// Normal flow
</code></pre>
<p>It will be good that I always excecute the <strong>normal flow</strong> and run the query in background and interrupt whenever I get a value for t and return to the page mentioned in struts config.Is there a way to do this? </p>
http://stackoverflow.com/questions/1807893/putting-a-servlets-reponse-in-a-struts-templates-tile0Putting a servlet's reponse in a struts template's tileGearóid2009-11-27T10:18:10Z2009-11-27T10:29:24Z
<p>Hi,</p>
<p>I've set up my servlet to get invoked through a struts action and the result is that it writes html to the screen. However, I'm using a template system (lets say header, content, footer) and would only like to write to the content title ie. keep the header and footer.</p>
<p>Does anybody know if this is possible?</p>
<p>Thanks,
Gearoid.</p>
http://stackoverflow.com/questions/491503/how-perform-junit-tests-with-struts-ibatis0How perform Junit tests with Struts - Ibatis Angel Escobedo2009-01-29T12:56:56Z2009-11-25T01:00:29Z
<p>Hello everyone, im using Struts 1.2.x and Ibatis 2.x version for development, so i finish yesterday and now i want to perform test this is my first time trying to work with JUnit, I already make test but in JavaApp not running on server, so how can I simulate or generate mocks with server behavior, and wich mocks are recommended for Struts and Ibatis built-in Environment?</p>
<p>for example how can i set accerts for login screen?</p>
<p>I know about StrutsTestCase im using it, and about Cactus are for containers and mocking for non containers scenaries, i want to view a demo using struts and ibatis cause I dont know how to retrieve data from mapping. Thanks</p>
<p>sorry about my English</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1789758/struts-2-data-transfer-and-type-conversions-for-primitive-types0Struts 2 data transfer and type conversions for primitive types.Jenea2009-11-24T12:24:13Z2009-11-24T12:26:38Z
<p>Hi.</p>
<p>I'm using java beans with automatic data transfer and type conversion.
Ex:</p>
<pre><code>public class MyAction
{
public String execute(){
// ....
}
private double price;
public getPrice(){
return price;
}
public setPrice(double price){
this.price=price;
}
}
</code></pre>
<p>Let my request to be <a href="http://localhost:8080/my.action?price=21.3" rel="nofollow">http://localhost:8080/my.action?price=21.3</a>
Then in the setPrice I'll get price variable value equal to 213.
I thing this occur because of the romanian culture set. In this cultures double are presented as 21,3 and not 21.3 as in the others.
In .NET there is something called as InvariantCulture for this cases. How can I do something similar in Struts and where should be this settings specified.</p>
http://stackoverflow.com/questions/1247627/java-component-based-vs-request-based-frameworks1Java Component based vs Request based frameworksavajurug2009-08-08T00:44:01Z2009-11-24T11:14:46Z
<p>I was recently asked in an interview - In java, how do you compare component based frameworks to request based frameworks? I explained EJB as an example of Component based framework and Struts as a request based framework but was not convinced if I did justice to the question.</p>
<p>Any ideas on what interviewer meant and what should have been compared??</p>
<p>regards,
avajurug</p>
http://stackoverflow.com/questions/1786387/in-struts2-how-do-you-share-your-common-html-across-all-pages0In Struts2, how do you share your common html across all pages?Chris2009-11-23T22:08:10Z2009-11-23T23:34:48Z
<p>In Struts2, how do you share your common html across all pages?</p>
<p>In Asp.net, you've got Master pages, and in Rails there are Layouts. The idea is that your common html (eg the header, menu, and styles) are all easy to maintain because they are in one place, but for the life of me i can't find the equivalent feature in Struts2.</p>
<p>Is it called something else, or something, is that why i can't find it?</p>
http://stackoverflow.com/questions/1784470/java-struts-report0Java Struts Reportkbrin802009-11-23T16:54:44Z2009-11-23T17:21:27Z
<p>I am writing an excel report using an action,controller, servlet struts framework. The report is very congested and has already around 10 separate queries. I need to add about 10 more queries due to a change in the report. Is there a way to do this without having to keep nesting the Result Sets? Below is the existing code.</p>
<pre><code>public TotalSalesKPIContainer totalSalesKPIQuery(String franchiseId, java.util.Date startDate, java.util.Date stopDate) {
String getFranIds = null;
ArrayList storeResultList = new ArrayList();
ArrayList salesPersonResultList = new ArrayList();
TotalSalesKPIContainer result = null;
Connection conn = null;
PreparedStatement pstmt1, pstmtLY, pstmtCountLY, pstmtTCount, pstmtTCountLY, pstmtCount = null;
PreparedStatement pstmt, ps = null;
ResultSet rs1, rsLY, rsCountLY, rsTCount, rsTCountLY, rsCount = null;
ResultSet rs = null, rsSP = null, rsBySP, rsTCount2, rsTCountLY2 = null, rsBySPLY, rsCountLY2, rsCount2;
java.util.Date prevStartDate;
java.util.Date prevStopDate;
try {
conn = getConnection();
if (franchiseId.equals("0")) {
getFranIds = "Select id, name from vymac.organization";
pstmt = conn.prepareStatement(getFranIds);
} else {
getFranIds = "Select id, name from vymac.organization where id = ? ";
pstmt = conn.prepareStatement(getFranIds);
pstmt.setString(1, franchiseId);
}
int franID = Integer.parseInt(franchiseId);
rs = pstmt.executeQuery();
while (rs.next()) {
result = new TotalSalesKPIContainer(rs.getString(2), franID,startDate, stopDate, storeResultList,salesPersonResultList);
/*
* This section is for Salesperson total sales
*/
pstmt1 = conn.prepareStatement(getTotalSalesBySP);
pstmt1.setInt(1, rs.getInt(1));
pstmt1.setDate(2, new java.sql.Date(startDate.getTime()));
pstmt1.setDate(3, new java.sql.Date(stopDate.getTime()));
rsBySP = pstmt1.executeQuery();
while (rsBySP.next()) {
ps = conn.prepareStatement(getSalesPersons);
ps.setInt(1, rsBySP.getInt(1));
rsSP = ps.executeQuery();
if (rsSP.next()) {
ps = conn.prepareStatement(getPrevTotalSalesBySP);
// Get previous year date
Calendar cal = Calendar.getInstance();
cal.setTime(startDate);
cal.add(Calendar.YEAR, -1);
prevStartDate = cal.getTime();
cal.setTime(stopDate);
cal.add(Calendar.YEAR, -1);
prevStopDate = cal.getTime();
ps.setString(1, rsBySP.getString(1));
ps.setDate(2,new java.sql.Date(prevStartDate.getTime()));
ps.setDate(3, new java.sql.Date(prevStopDate.getTime()));
rsBySPLY = ps.executeQuery();
if (rsBySPLY.next()) {
// Count Invoices for Last Year
ps = conn.prepareStatement(findCountBySP);
ps.setDate(1, new java.sql.Date(prevStartDate.getTime()));
ps.setDate(2, new java.sql.Date(prevStopDate.getTime()));
ps.setString(3, rsBySP.getString(1));
rsCountLY2 = ps.executeQuery();
if (rsCountLY2.next()) {
ps = conn.prepareStatement(findCountBySP);
ps.setDate(1, new java.sql.Date(startDate.getTime()));
ps.setDate(2, new java.sql.Date(stopDate.getTime()));
ps.setString(3, rsBySP.getString(1));
rsCount2 = ps.executeQuery();
if (rsCount2.next()) {
ps = conn.prepareStatement(trafficCountBySP);
ps.setDate(1, new java.sql.Date(startDate.getTime()));
ps.setDate(2, new java.sql.Date(stopDate.getTime()));
ps.setString(3, rsBySP.getString(1));
rsTCount2 = ps.executeQuery();
if (rsTCount2.next()) {
ps = conn.prepareStatement(trafficCountBySP);
ps.setDate(1, new java.sql.Date(prevStartDate.getTime()));
ps.setDate(2, new java.sql.Date(prevStopDate.getTime()));
ps.setString(3, rsBySP.getString(1));
rsTCountLY2 = ps.executeQuery();
if (rsTCountLY2.next()) {
TotalSalesInformationBySalesPerson tbsp = new TotalSalesInformationBySalesPerson(rsSP.getString(1), rs.getString(2), rs.getInt(1),rsCount2.getInt(1), rsBySP.getDouble(2),rsBySPLY.getDouble(2),rsCountLY2.getInt(1),
rsTCount2.getInt(1),rsTCountLY2.getInt(1));
salesPersonResultList.add(tbsp);
} else {
TotalSalesInformationBySalesPerson tbsp = new TotalSalesInformationBySalesPerson(
rsSP.getString(1), rs
.getString(2), rs
.getInt(1),
rsCount2.getInt(1), rsBySP
.getDouble(2),
rsBySPLY.getDouble(2),
rsCountLY2.getInt(1),
rsTCount2.getInt(1), 0);
salesPersonResultList.add(tbsp);
}
}
}
}
} else {
ps = conn.prepareStatement(findCountBySP);
ps.setDate(1,
new java.sql.Date(startDate.getTime()));
ps
.setDate(2, new java.sql.Date(stopDate
.getTime()));
ps.setString(3, rsBySP.getString(1));
rsCount2 = ps.executeQuery();
if (rsCount2.next()) {
ps = conn.prepareStatement(trafficCountBySP);
ps.setDate(1, new java.sql.Date(startDate
.getTime()));
ps.setDate(2, new java.sql.Date(stopDate
.getTime()));
ps.setString(3, rsBySP.getString(1));
rsTCount2 = ps.executeQuery();
if (rsTCount2.next()) {
TotalSalesInformationBySalesPerson tbsp = new TotalSalesInformationBySalesPerson(
rsSP.getString(1), rs.getString(2),
rs.getInt(1), rsCount2.getInt(1),
rsBySP.getDouble(2), 0.00, 0,
rsTCount2.getInt(1), 0);
salesPersonResultList.add(tbsp);
} else {
TotalSalesInformationBySalesPerson tbsp = new TotalSalesInformationBySalesPerson(
rsSP.getString(1), rs.getString(2),
rs.getInt(1), rsCount2.getInt(1),
rsBySP.getDouble(2), 0.00, 0,
rsTCount2.getInt(1), 0);
salesPersonResultList.add(tbsp);
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1777912/struts2-application-on-jboss0struts2 application on jbossdcp2009-11-22T05:31:57Z2009-11-22T14:16:15Z
<p>This is a bit of a continuation of <a href="http://stackoverflow.com/questions/1777339/deploy-struts-app-on-jboss">http://stackoverflow.com/questions/1777339/deploy-struts-app-on-jboss</a>, but it's different enough that I felt it warranted a new question.</p>
<p>In the other question, I was working with struts, but now I'm working with struts 2.
The tutorials <a href="http://www.vaannila.com/" rel="nofollow">here</a> are broken up into struts tutorials and struts2 tutorials.</p>
<p>What I'm finding is that I need to have JAVA_HOME set to point to a jdk6 or the struts 2 samples won't work. So in eclipse, I added another JBoss Server to my JBoss Server View (I'm using JBoss tools) and made it use jdk1.6.</p>
<p>My question is, is this normal? Does struts 2 require jdk6?</p>
<p>[EDIT]
The stack trace is huge, I'm pasting the first part of it below:</p>
<pre><code>2009-11-22 05:13:42,625 INFO [com.opensymphony.xwork2.config.providers.XmlConfigurationProvider] Parsing configuration file [struts.xml]
2009-11-22 05:13:42,890 DEBUG [com.opensymphony.xwork2.util.LocalizedTextUtil] Added default resource bundle 'org/apache/struts2/struts-messages' to default resource bundles = [org/apache/struts2/struts-messages, com/opensymphony/xwork2/xwork-messages]
2009-11-22 05:13:43,093 DEBUG [com.opensymphony.xwork2.config.providers.XmlConfigurationProvider] Loaded [BUILDER] {PackageConfig Name:struts-default namespace: parents:[]}
2009-11-22 05:13:43,203 DEBUG [com.opensymphony.xwork2.validator.DefaultValidatorFactory] Loading validator definitions.
2009-11-22 05:13:43,281 DEBUG [com.opensymphony.xwork2.interceptor.I18nInterceptor] new I18nInterceptor()
2009-11-22 05:13:43,281 DEBUG [com.opensymphony.xwork2.interceptor.I18nInterceptor] new I18nInterceptor()
2009-11-22 05:13:43,296 DEBUG [com.opensymphony.xwork2.interceptor.I18nInterceptor] new I18nInterceptor()
2009-11-22 05:13:43,328 DEBUG [com.opensymphony.xwork2.config.providers.XmlConfigurationProvider] Loaded [BUILDER] {PackageConfig Name:convention-default namespace: parents:[{PackageConfig Name:struts-default namespace: parents:[]}]}
2009-11-22 05:13:43,500 ERROR [STDERR] java.lang.Exception: Could not load invoker/war/WEB-INF/classes/org/jboss/invocation/http/servlet/InvokerServlet$GetCredentialAction.class
2009-11-22 05:13:43,500 ERROR [STDERR] at com.opensymphony.xwork2.util.finder.ClassFinder.readClassDef(ClassFinder.java:745)
2009-11-22 05:13:43,500 ERROR [STDERR] at com.opensymphony.xwork2.util.finder.ClassFinder.<init>(ClassFinder.java:148)
2009-11-22 05:13:43,500 ERROR [STDERR] at org.apache.struts2.convention.PackageBasedActionConfigBuilder.findActions(PackageBasedActionConfigBuilder.java:295)
2009-11-22 05:13:43,500 ERROR [STDERR] at org.apache.struts2.convention.PackageBasedActionConfigBuilder.buildActionConfigs(PackageBasedActionConfigBuilder.java:277)
2009-11-22 05:13:43,515 ERROR [STDERR] at org.apache.struts2.convention.ClasspathPackageProvider.loadPackages(ClasspathPackageProvider.java:52)
2009-11-22 05:13:43,515 ERROR [STDERR] at com.opensymphony.xwork2.config.impl.DefaultConfiguration.reloadContainer(DefaultConfiguration.java:200)
2009-11-22 05:13:43,515 ERROR [STDERR] at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:55)
2009-11-22 05:13:43,515 ERROR [STDERR] at org.apache.struts2.dispatcher.Dispatcher.init_PreloadConfiguration(Dispatcher.java:360)
2009-11-22 05:13:43,515 ERROR [STDERR] at org.apache.struts2.dispatcher.Dispatcher.init(Dispatcher.java:403)
2009-11-22 05:13:43,515 ERROR [STDERR] at org.apache.struts2.dispatcher.ng.InitOperations.initDispatcher(InitOperations.java:69)
2009-11-22 05:13:43,515 ERROR [STDERR] at org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter.init(StrutsPrepareAndExecuteFilter.java:48)
2009-11-22 05:13:43,515 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:275)
2009-11-22 05:13:43,515 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:397)
2009-11-22 05:13:43,515 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:108)
2009-11-22 05:13:43,515 ERROR [STDERR] at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3722)
</code></pre>
http://stackoverflow.com/questions/1772797/struts-tiles-1-nested-tiles-problem2Struts Tiles 1 - nested tiles problemThe Feast2009-11-20T19:42:41Z2009-11-22T09:18:38Z
<p>I am using Struts tiles 1 succesfully, however I have come across a problem when trying to nest tiles.</p>
<p>I currently have a layout like so:</p>
<p><img src="http://i49.tinypic.com/jhuemc.jpg"></p>
<p>I wish to have another template like this, for use in quite a few user pages:</p>
<p><img src="http://i46.tinypic.com/14o4mk3.jpg"></p>
<p>So I wish to extend the first layout for the user layout. In the tiles definiton I am using:</p>
<pre><code><definition name=".basic.layout" path="/WEB-INF/jsps/basicLayout.jsp">
....
<definition name=".user.layout" extends=".basic.layout">
<put name="content" value="/WEB-INF/jsps/user/layout.jsp"/>
....
<definition name=".user.page" extends=".user.layout">
<put name="userContent" value="/WEB-INF/jsps/user/page.jsp"/>
....
</code></pre>
<p>In <code>user/layout.jsp</code> I attempt to show the tile usually, using <code><tiles:get name="userContent"/></code>.</p>
<p>And the problem is <code>The requested resource (/WEB-INF/jsps/user/userContent) is not available</code></p>
http://stackoverflow.com/questions/1777339/deploy-struts-app-on-jboss0deploy struts app on jbossdcp2009-11-22T00:39:07Z2009-11-22T01:13:08Z
<p>I'm working through some struts tutorials, and here's one of the ones I'm using:
<a href="http://www.vaannila.com/struts/struts-example/struts-login-page-example-1.html" rel="nofollow">http://www.vaannila.com/struts/struts-example/struts-login-page-example-1.html</a></p>
<p>I downloaded the "source + lib" link at the bottom of that page, I copied the Example2 folder from the zip to my webapps folder under tomcat, and everything works as advertised.</p>
<p>However, when I try to take this same Example2 folder and copy it to my jboss 4.2.3 default\deploy folder, it doesn't work. Sorry for such a newbie question, but just wondered if anyone had any advice.</p>
<p>Here's the beginning of the error trail from the console:</p>
<pre>
9:37:57,968 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
--- Packages waiting for a deployer ---
org.jboss.deployment.DeploymentInfo@ae05c37c { url=file:/C:/jboss-4.2.3.GA/server/default/deploy/Example2/ApacheLicense.txt }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/C:/jboss-4.2.3.GA/server/default/deploy/Example2/ApacheLicense.txt
altDD: null
lastDeployed: 1258850277875
lastModified: 1258850277875
mbeans:
org.jboss.deployment.DeploymentInfo@2fc10fd3 { url=file:/C:/jboss-4.2.3.GA/server/default/deploy/Example2/WEB-INF/classes/com/vaannila/ApplicationResource.properties }
deployer: null
status: null
state: INIT_WAITING_DEPLOYER
watch: file:/C:/jboss-4.2.3.GA/server/default/deploy/Example2/WEB-INF/classes/com/vaannila/ApplicationResource.properties
altDD: null
lastDeployed: 1258850277875
lastModified: 1258850277875
mbeans:
.
.
.
</pre>
<p>So maybe I need some different configuration for deploying a struts app in Jboss?</p>
<p>Thanks.</p>