The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
33 views

Issue with Model driven in struts for a PUT request?

I'm making a PUT request with Content-Type as application/x-www-form-urlencoded. I'm not able to map the form body elements to my modeldriven action class (User). Here is a sample request: PUT: ...
0
votes
1answer
292 views

How to implement validations using annotations in struts2 in action that implements ModelDriven interface?

I am trying to implement validation using annotations, but these validations don't work and the form gets submitted with null values. I don't know what is missing, how to implement validations using ...
1
vote
3answers
886 views

In Struts2 I am not getting form value on success.jsp page

In my application I am trying to register a user by adding his details to the database and after success fully insert these values. I need to display form input page but on result page I am not ...
2
votes
5answers
118 views

NullPointerException error when using ModelDriven

I have two classes as following Address int ID int unit String street User int ID String Name Address address my user class public class user{ ..... private Address ...
0
votes
2answers
443 views

Struts2 Populate form bean value from an Object located in the Session

I want to update a table in my database, but before that I will show the user his current information. now I have this form bean. I have a form bean in my action class called. public void ...
1
vote
0answers
162 views

Automatic binding of Model Driven inherited classes data members with UI form attributes in Struts 2

I have a Model class as below: class MYModel { List<String> companyName; } I have an Action say: class MyAction extends ActionSupport implements ModelDriven<MYModel> { MyModel ...
3
votes
0answers
456 views

Struts 2 Ajax Validation with jsonValidationWorkflowStack and Model Driven

I'm trying to use Ajax validation in my Struts2 web app (with JQuery plugin) and i have an issue. I had problems using the @Validations annotations so I'd just overrided the validate() method and all ...
1
vote
0answers
167 views

Struts 2 Model driven negative integer

How to assign a negative number (-123 or -123.00) to a ModelDriven bean (implements ModelDriven< Bean >). When i try passing the value through request for that action it throws below exception ...
0
votes
1answer
331 views

ModelDriven on struts 2

I am developing a project using hibernate, struts2 and spring, but my problems are with struts. I have created 3 classes extending ActionSupport and are implementing modeldriven for the same class in ...
0
votes
1answer
166 views

How to use EMF with an own meta-model

my goal is to create a meta-model for a model but one level higher than by default with EMF. The meta-model(2) should define the possibilities and restrictions for the possible modles(1). Then I want ...
1
vote
1answer
447 views

Struts2 : Model or Action? What about the Model-Driven class?

I'm not concerned about making a useful project under Struts2, only, but a well structured one, too. I have a bean called Custormer, in which there are necessary attributes and their getters and ...
0
votes
1answer
175 views

Struts 2 ModelDriven for diferent request parameter name and bean property name

Is it possible to assign the value to the bean property by implementing ModelDriven interface but having different name in request and bean for eg Ajax request DemoStruts.Action?param_a=649 the ...
2
votes
0answers
182 views

Is there any model driven editor for entity framework?

The idea with model-driven development is to automize otherwise repetitive tasks. LinqPad makes it possible to load an assembly and an optional connection string and start querying a database. In ...
0
votes
1answer
519 views

Struts2 - Implementing ModelDriven - Create an interceptor that accesses the model properties

I'm relatively new to Struts2. I've started using ModelDriven to reduce overhead in development. I wanted to write an interface to modify a property before it gets to the action but I don't see how ...
1
vote
1answer
863 views

In Struts2 I can't use modeldriven with validate

In the struts.xml: <action name="User_UserFormSubmit" class="actions.UserManager"> <result name="input" >/jsp/user_form.jsp</result> <result name="success" ...
1
vote
1answer
236 views

Is there a way to load mutiple ModelDriven models for one action class in Struts2?

Is there a way to load mutiple ModelDriven models for one action class or swtich the model on one action class in struts2?
0
votes
1answer
434 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 ? ...
1
vote
1answer
725 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 ...
3
votes
1answer
1k 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" ...
1
vote
5answers
180 views

Alternative to ANT as task execution engine?

I have to automate quite a lot in my current project. For this, I use ANT as it provides quite some commands. However, I have to use ant-contrib as I need for loops and other additional parts. I use ...
-1
votes
1answer
964 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 ...
0
votes
2answers
1k 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 { ...
5
votes
5answers
439 views

Is there a MDSD/MDA success story for a real world application?

I am currently facing a situation where I as an advocate of test driven development have to compete with an advocate of model driven software development (MDSD) / model driven architecture (MDA). In ...
3
votes
1answer
509 views

Synchronizing an ERWin model with a Visual Studio 2008 GDR 2/2010 db project

I am looking for options to get our vast collection of DB objects across many DBs into source control (TFS 2010). Once we succeed here, we will work toward generating our alter scripts for a ...
0
votes
1answer
1k 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 ...
2
votes
1answer
953 views

Is Inheritance in Struts2 Model-Driven Action possible?

I have a Model-Driven Struts2 action that provides correct JSON response. When I re-structure the action I get an empty JSON response back. Has anyone got inheritance working with Struts2 Model-Driven ...
4
votes
4answers
400 views

What are the benefits and risks of moving to a Model Driven Architecture approach?

I work for a company with about 350 employees and we are in the process of growing. Our current codebase is not structured very well and we are looking both at how to improve it immediately (by ...
0
votes
1answer
910 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
1answer
428 views

Rhapsody TestConductor Experiences

I was wondering whether anybody out there is actively using Rhapsody TestConductor? Or has tried it for a while, but then decided to turn it down for a particular reason? If so, what are your ...
6
votes
4answers
690 views

Are you doing MDA (Model Driven Architecture) right now? If so, what tools do you use, and how is it working out?

Model Driven Architecture is the idea that you create models which express the problem you need to solve in a way that is free of any (or at least most) implementation technologies, and then you ...
5
votes
8answers
3k views

Recommended Model Based Testing Tools [closed]

Does anyone have any suggestions on what Model Based Testing Tools to use? Is Spec Explorer/SPEC# worth it's weight in tester training? What I have traditionally done is create a Visio Model where I ...
0
votes
2answers
5k 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. ...
5
votes
3answers
621 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
4answers
478 views

Tools (Best Practices?) for model driven development?

Model Driven Software Development. As I understand it it raises the abstraction level of the design to better reflect the domain the software will attempt to run in. That's alot to say in just one ...
0
votes
3answers
996 views

When deleting hasOne or hasMany associations, should the foreignKey be set to NULL?

Given : Group hasMany Persons but the relationship is independent (ie. Persons can exist without belonging to a Group), should the foreign key in the persons table (ie group_id) be set to 0 (or ...
0
votes
5answers
2k views

How do I join two tables in a third n..n (hasAndBelongsToMany) relationship in CakePHP?

I have a n...n structure for two tables, makes and models. So far no problem. In a third table (products) like: id make_id model_id ... My problem is creating a view for products of one specifi ...
5
votes
3answers
4k views

CakePHP multi-model view

I am creating a website in CakePHP and I am kind of new on it. I couldn't find good resources on this matter, so there you go: I have a three table structure for registering users: Users, Addresses ...
6
votes
8answers
642 views

What do you think of Model-driven Software Development?

I'm really interested to hear what you think about Model-driven Software Development for Java and/or .NET. Does it save time? Does it improve quality?
5
votes
6answers
545 views

Metamodelling tools

What tools are available for metamodelling? Especially for developing diagram editors, at the moment trying out Eclipse GMF Wondering what other options are out there? Any comparison available?
7
votes
9answers
1k views

Do you use MDA/MDD/MDSD, any kind of model-driven approach? Will it be the future?

Programming languages had several (r)evolutionary steps in their history. Some people argue that model-driven approaches will be The Next Big Thing. There are tools like openArchitectureWare, ...