File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Struts and the fly likes Using STRUTS and Hibernate Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Using STRUTS and Hibernate" Watch "Using STRUTS and Hibernate" New topic
Author

Using STRUTS and Hibernate

Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

Is it a good idea or bad idea to use Hibernate or any O/R API with STRUTS?
If it is good practice, here is my question.
Can you map the STRUTS Form Bean object to the Hibernate Mapping or do you have to create seperate classes, one for STRUTS and one for Hibernate and transfer the data from one to the other?
Also, would my action class handle the actual .save() method from the Hibernate API or would I do it somewhere else?
I would really like it if someone had some information regarding integrating Hibernate with STRUTS.
Thanks.
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

After some more research I have found that most examples show using the Hibernate API within the Action Handler class of the Form.
Since this is where the Form Bean is instantiated and values are assigned, it makes sense.
However, should we not also want to seperate this a bit more. And somehow move the DB Access Logic outside of the Action Handler and have another Action called to handle the DB Transactions?
I don't know, I am just looking for ideas here. Any suggestions?
[ June 03, 2003: Message edited by: Gregg Bolinger ]
Igor Shabalov
Greenhorn

Joined: Jun 03, 2003
Posts: 7
Do you consider using JDO for data assess?
If I understand you right - you try to make application architecture without visible "model" layer. You data go between database and forms bypassing intermediate object layer. This is reasonable design, but you lose some degree of flexibility and loitering your controller layer with data assess logic.
Best,
Igor.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Using STRUTS and Hibernate
 
Similar Threads
who's waiting for ejb 3?
How to get to J2EE level
Struts, hibernate,..... opinion
Spring document
design question?