java - What ORM should I use for Spring MVC Project with Derby db? -
i'm developing web project use spring mvc , apache derby embedded. database contains table users, roles , users-roles. have typical crud. due first time using derby. tried access db using java.sql.connection, java.sql.resultset, etc. works good, necessary connect db manually , write sql code in java classes?
somebody recommended me using spring jdbctemplate. i'm looking ibatis, maps objects , db entities transparently.is possible use spring jdbctemplate ibatis??
thank you
i'd recommend hibernate because it's supported spring , has nice transaction management spring. there's tonnes of documentation spring hibernate.
hibernate has strong support derby , need put correct dialect in.
Comments
Post a Comment