0
votes
2answers
81 views
I’ve written a java getting-started tutorial, where would be a good site to post it for checking?
Hi all,
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, …
0
votes
1answer
34 views
Struts help needed
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 …
0
votes
0answers
6 views
Create PDF in Struts from data on screen
Hi,
I am able to create a simple pdf using iText api inside a struts action class.
The data that should be passed into the pdf is generated on screen based on user search parameters.
What I am …
0
votes
1answer
14 views
Putting a servlet’s reponse in a struts template’s tile
Hi,
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 …
0
votes
1answer
396 views
How perform Junit tests with Struts - Ibatis
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 …
0
votes
1answer
7 views
Struts 2 data transfer and type conversions for primitive types.
Hi.
I'm using java beans with automatic data transfer and type conversion.
Ex:
public class MyAction
{
public String execute(){
// ....
}
private double price;
public getPrice(){
return …
1
vote
4answers
216 views
Java Component based vs Request based frameworks
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 …
0
votes
1answer
26 views
In Struts2, how do you share your common html across all pages?
In Struts2, how do you share your common html across all pages?
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 …
0
votes
1answer
27 views
Java Struts Report
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 …
0
votes
2answers
42 views
struts2 application on jboss
This is a bit of a continuation of http://stackoverflow.com/questions/1777339/deploy-struts-app-on-jboss, but it's different enough that I felt it warranted a new question.
In the other question, I …
2
votes
3answers
52 views
Struts Tiles 1 - nested tiles problem
I am using Struts tiles 1 succesfully, however I have come across a problem when trying to nest tiles.
I currently have a layout like so:
I wish to have another template like this, for use in …
0
votes
1answer
31 views
deploy struts app on jboss
I'm working through some struts tutorials, and here's one of the ones I'm using:
http://www.vaannila.com/struts/struts-example/struts-login-page-example-1.html
I downloaded the "source + lib" link at …
3
votes
6answers
771 views
How can I set the welcome page to a struts action?
I have a struts-based webapp, and I would like the default "welcome" page to be an action. The only solutions I have found to this seem to be variations on making the welcome page a JSP that contains …
0
votes
1answer
130 views
Struts 2 and locale question
I've got forms that I display on almost every pages of a website (a login form, for example), so I don't use an action for those. The "post" of those forms just goes to an action and if there is a …
0
votes
2answers
27 views
Web templating (struts tiles) - best solution to indicate current page?
I would like to indicate the currently chosen page in a shared menu component of a web page in a Struts Tiles project.
I can think of some possible solutions
check current URL
call some Javascript …
