简体   繁体   中英

generate service /dao layer for GWT/Spring/Hibernate/PostgreSQL

We're developing a webapp using GWT 2.0(not to AppEngine), Spring and Hibernate and trying to jumpstart by auto-generating as much code as possible.

I've looked at spring roo vs appfuse generate service /dao layer . I tried appfuse but that did NOT work for me; Also, roo for GWT is not quite there yet since it's a Milestone release.

If a tool can generate the Service Layer and DAO layer for me, I should be able to do the actual business logic and UI wiring -- although it appears that if I'm willing to wait for another 6 months, the current 1.1M1 version of Roo can get me there, but I need to get something going right away.

Any suggestions ?

Thanks much

我自己没有使用过,但是Firestorm / DAO看起来很有前途...

AppFuse and Spring roo in their current versions should provide sufficient features to generate the desired code.

As you want to generate the Service and Dao layers, there is nothing GWT-related here.

So give AppFuse another try, or ask a question about your concrete problems with AppFuse.

GrailsGWT插件呢?

From my understanding of a service layer I don't know how you would generate that; if written properly it should be very much based on your business model, and shouldn't follow your database schema much at all. Unlike a DAO (arguably, I actually don't have DAO's one to one entity all the time either), you shouldn't have a service for every entity, instead your services should either use entities as part of their API to perform units of work, or supply business objects that are an abstraction layer between the controlling logic and data access. It can also be a hybrid of both. This depends on how complicated the application is, and how closely related your DAO/Entities are to your database.

EDIT: Based on your comment, and the great rush, I would use the tools mentioned in other posts to generate your DAO layer, that will give you a very good start. Then I would create a single Service object that holds all of your DAOs. From there, you will have access to do all your business logic in a testable container (the service object). This will keep you from putting it in the controllers, and will give a single place where people can see all the business logic methods. As it grows you will see the redundancies, and the logical units that you could later seperate into different service objects.

Hopefully you will have the time to do so, but when I'm in a huge rush, I like all of my business complexity to be in a single service object, as opposed to many controllers. The refactoring you do later will be much easier. And you can still easily test methods, which I'd recommend regardless of the rush, trust me, it's faster to write tests on service methods than test them by deploying, and checking.

Check out fastcode . It's pretty wicekd. It takes your DAO's, which you can auto-generate using myEclipse and plugs them into fastcode generating nice service layer interfaces. It does this all using Spring as an option.
Cool thing is you can gererate the service layer again and again as the database changes (in tandem with updated DAO's)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM