Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Eclipse plugin for Spring JDBCTemplate code generation? [closed]

I am planing to use Spring JDBCTemplate for all my database needs. I wanted to know if there is a Eclipse plugin which will take a data base table and auto generate -

  1. The domain model POJOs
  2. DAO Classes

I know such a tool already exists for hibernate(http://www.hibernate.org/subprojects/tools.html). Is there a similar plugin which will help me auto generate Spring JDBCTemplate classes?

like image 448
Pushkar Avatar asked May 15 '11 08:05

Pushkar


1 Answers

The Telosys Tools Eclipse plugin is designed for this kind of job.

You can generate your Java (POJO) classes from the database with the basic templates and you can also create your own template (a Velocity file) to generate your DAO classes

See http://www.telosys.org/

like image 148
lgu Avatar answered Oct 23 '22 10:10

lgu