Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread parveen yadav
Morten Matras writes: > > > Hi Yadav > > Yes, integrating Hibernate with Stripes could be documented a bit better. Its been years since I looked at it. > > At LeadDoubler we've made a framework that does 95% of the programming for us related to hibernate. This might be what you are looking fo

Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread Alessio Stalla
Hi, as another shameless plug, if you're interested in evaluating open source frameworks based on Stripes and Hibernate that make CRUD dead simple and require little or no programming, have a look at our Portofino: http://portofino.manydesigns.com cheers, Alessio On Fri, Aug 21, 2015 at 11:15 AM

Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread VANKEISBELCK Remi
Hi, Unfortunately there ain't no "official" Stripes/Hibernate plugin as far as I know. We had "Stripernate" once but it doesn't seem to exist any more. We discussed this on IRC recently and agreed it's a problem, the lack of such integration layers... We're typically in the case of someone who wa

Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread Rick Grashel
Yadav, Something you should look at is implementing an Generic AbstractDAO pattern. In Java, this is a wonderful way to separate things at the domain object level and allow for a high amount of re-use. If you are using Spring (which most Hibernate users are), take a look at this page: http://ww

Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread Tom Coleman
Check out stripersist: http://sourceforge.net/projects/stripes-stuff/files/Stripersist/ There is a sample program in the distribution. It simple and works like a charm. On Aug 20, 2015, at 8:27 PM, parveen yadav wrote: > Hi All, > > This is my first interaction with Stripes. The framework lo

Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread Nestor Hernandez
Hi Yadav, Are you sure that you want to use the Hibernate API?, We have an standard API for ORM that is called JPA and works with multiple providers(Hibernate, EclipseLink, etc.) If you're deploying to a Java EE server (Full or WebProfile) then i'ts very easy to use JPA, because it all comes integ

Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread Remi Vankeisbelck
Nice, I didn't know it was still available. We should move the code to gh and add some docs in the wiki ? Cheers Rémi -Message d'origine- De : "Tom Coleman" Envoyé : ‎21/‎08/‎2015 19:58 À : "Stripes Users List" Objet : Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread Joaquin Valdez
Yes please. Joaquin Valdez joaquinfval...@gmail.com 1.541.702.1281 > On Aug 21, 2015, at 2:30 PM, Remi Vankeisbelck wrote: > > Nice, I didn't know it was still available. > > We should move the code to gh and add some docs in the wiki ? > > Cheers > > Rémi > De : Tom Coleman

Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread Morten Matras
You may choose not to go down the DAO route, I might be wrong, but it seems to force you to write too many classes and interfaces. It is actually possible to create a simple system with the following elements: 1 HibernateFilter class ensuring that transactions are managed as they should a

Re: [Stripes-users] Integrate Hibernate or eBean with Stripes

2015-08-21 Thread parveen yadav
parveen yadav writes: > > Hi All, > > This is my first interaction with Stripes. The framework looks clean and > simple. I come from Oracle Commerce(formally ATG) background and do not have > experience with any other frameworks at all. I am unable to find any step by > step guide to integrate

Re: [Stripes-users] Stripes-users Digest, Vol 109, Issue 3

2015-08-21 Thread Heather and Jon Turgeon
Too funny, I also worked at ATG (small company) as a developer in Cambridge. I am using Stripes with Hibernate for my site venturrfarther.com. As of yet I am not using Spring, just straight Hibernate. A bit different from the Repository... Take a look at the Hibernate examples, integration with