Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
543 views

What is model driven development good for?

Microsoft, of Cairo fame, is working on Oslo, a new modeling platform. Bob Muglia, Senior Vice President of Microsoft Server & Tools Business, states that the benefits of modeling have always been ...
2
votes
1answer
590 views

Mapping an Enum to form elements using struts2

I'm trying to create a form which contains a radio button that maps to a class that extends java.lang.Enum. <s:form action="corp_low_save"> <s:textfield label="Corporate Client Name" ...
0
votes
1answer
49 views

Struts2 Bulk Data display using ModelDriven

I know the basic Concept of Model Driven process. How ever i would like to know whether the same ModelDriven Interface process can be used to display bulk data on the action tagged response page ? ...
0
votes
1answer
322 views

Struts2 CRUD, how to update the model : ModelDriven. It's always blank in the JSP

I'm not able to retreive my Model in my JSP to update the object. public class ViewDashboardAction extends ActionSupport implements ModelDriven { private Clinique clinique = null; @Override ...
0
votes
2answers
532 views

The sequence of ModelDriven and Prepare?

I put the println() in each method of Action class. public String execute() throws Exception { System.out.println("execute"); //... } public void prepare() throws Exception { ...
0
votes
1answer
645 views

Multiple Model Objects for fields in one form in Struts 2

We have a JSP page which shows details from multiple beans. Now, there is a requirement to edit the details of these individual beans and persist it into the database. So what we are doing is having ...
0
votes
2answers
4k views

Combining UrlRewriteFilter and struts 2 with get parameters

Following up on an older question of mine, I managed to get URL Rewriting working somewhat correctly for my struts project where URLs like search?q=blah get converted to queries search.action?q=blah. ...
-1
votes
1answer
625 views

I found a problem with ModelDriven of Struts2

Please download this and run it. I think it's worth trying though it'll be a little annoying. In execute method of action class, if you set the bean by the method returning beans, Modeldriven won't ...
-1
votes
1answer
748 views

Struts2 data tranfer from Jsp to Action using Complex Objects

how to use Model-driven or Object-backed approaches to map Complex Object with depth more than one. for example, I have action class with property User object and USer has a address object as its ...