ModelDriven « Struts « JPA Q&A





1. Does the ModelDriven interface poses a security explot in struts2?    stackoverflow.com

background: I coded a struts2 ActionSupport class with ModelDriven. It's a hibernate/spring web app, using OSIV and attached entities in the view (JSP). I received this email today from the architect ...

2. ModelDriven & Hibernate Entities    struts.1045723.n5.nabble.com

I had started down a path of using the ModelDriven interface from Struts because I find it really helps maintain a class action class without large numbers of get/set methods for screens that contain a lot of form fields. However, I am finding at least with how I have attempted to approach ModelDriven to have several drawbacks. For ...

3. ModelDriven CRUD validation failure still causes JPA update    struts.1045723.n5.nabble.com

I have a ModelDriven action which controls CRUD operations on JPA managed Entity E. E has a property called ?name? which maps to a database column with a NOT NULL constraint. I have added a RequiredStringValidator annotation to my Action to validate that the ?model.name? property is non-null. The validation works perfectly. However, during Struts Interceptor processing of a user entered ...