Projects tagged ‘hibernate’, ‘jpa’, and ‘spring’


Jump to tag:

Projects tagged ‘hibernate’, ‘jpa’, and ‘spring’

Filtered by Project Tags hibernate jpa spring

Refine results Project Tags java (35) struts2 (11) maven (11) mysql (9) gwt (9) web (8) j2ee (7) dwr (6) struts (6) ajax (6) maven2 (5) ejb3 (5)

[60 total ]

2 Users
 

Tudu Lists is an on-line application for managing todo lists. With Tudu Lists, todo lists can be easily accessed, edited and shared on the Web. It is a simple but effective project management tool.
Created over 3 years ago.

1 Users

Click on the logo to visit official project site. DAO Fusion is a lightweight yet comprehensive and extensible Java based Data Access Object (DAO) pattern implementation built on top of Java ... [More] Persistence API (JPA) and Hibernate. FeaturesYou could think of DAO Fusion as a solid foundation for your own DAO layers, doing most of the usual heavy lifting for you and providing support for common DAO-related tasks and patterns, such as: Persistent entity model Model your business domain using a standard persistent entity model with out-of-the-box default persistent entity implementations. Core DAO classes Build your DAO layer by extending standard persistent entity DAO interfaces / abstract implementations which already provide most of the usual DAO functionality. Persistent entity criteria API Construct persistent entity criteria with advanced filtering, sorting and paging capabilities and pass them to DAO methods to query for desired results. Criteria transfer object pattern Use the criteria transfer object (CTO) pattern to construct client-side versions of persistent entity criteria instances and pass them through the chosen communication mechanism to the remote server-side component, employing a CTO converter for seamless CTO-to-criteria transformation. Bitemporal pattern Add temporal aspects to your business domain, tracking persistent entities in two distinct timelines denoting the validity of facts and your knowledge of such facts throughout the time. Integration testsIn addition to all of that, DAO Fusion provides an out-of-the-box integration test support based on JUnit and Spring's TestContext framework. Integration tests interact with the chosen database instance and make sure that all standard DAO implementations are properly and thoroughly tested using a non-trivial sample domain model. Note that DAO Fusion is integration-tested against many popular databases, including MySQL, PostgreSQL, DB2, Oracle 10g and MS SQL Server 2000. Getting startedVisit our official project site to learn more about DAO Fusion. [Less]
Created 11 months ago.

1 Users

XUI is a Rich Internet Application Framework built using Java and XML. XUI comes with plugins for NetBeans and Eclipse that provide WYSIWYG design environments, including drag and drop form generation from Hibernate/JPA POJOs.
Created over 2 years ago.

1 Users
 

Utility library to implement domain objects and DAOs based on JPA and Spring.
Created about 1 year ago.

0 Users

定位Easy EAO 不是一个框架,只是一个简便、友好的 EAO 开发工具,是对主流开发框架的补充。 概述Easy EAO 致力与简化 EAO ... [More] 层的开发,以提升项目整体的开发效率。他利用 EAO 层的特点,使 EAO 层的开发不需要编写实现类,仅需要编写接口并使用特定的 Annotation 声明就可以自动完成。 他对主流的开发框架以插件形式提供支持(目前已提供 Spring 环境的 Hibernate 与 JPA 持久化环境的支持),且他对使用者而言是完全可扩展的。就算该工具目前未能提供的功能,使用者也可以通过简单、灵活的扩展方式,自行完成功能扩展。 范例下面以一个在 Spring 环境中的 Hibernate 实体的 EAO 接口的定义,作为范例说明 Easy EAO 的使用。 实体public class Exam { private Integer id; private String subject; private String student; private int grade; // Getter and Setter ... }EAO接口public interface ExamEao { @Persist void create(Exam... exams); @Remove void remove(Exam... exams); @Merge void update(Exam... exams); @Retrieve Exam get(Integer id); @Retrieve(lazy = true) Exam load(Integer id); @Query(query = "from Exam e where e.subject = ? order by e.grade") List listBySubject(String subject); @Query(query = "from Exam e where e.subject = :s1 and e.student = :s2") Exam getByStudentAndSubject( @Param(name="s2") String Student, @Param(name="s1") String subject); @Paging(size = 5, query = @Query(query = "from Exam e order by e.grade")) Page pagingAll(@Number int page); @Query(query = "select new org.easy.eao.example.ExamInfo(" + "e.student,max(e.grade),min(e.grade),sum(e.grade),avg(e.grade)" + ") from Exam e where e.student = ? group by e.student") ExamInfo getStudentExamInfo(String student); @Query(named = "Exam.listByStudent") List listByStudent(@Param(name="student") String student); }Spring 配置 其他配置 范例下载地址 更详细的使用教程,请查看使用参考手册 [Less]
Created 9 months ago.

0 Users

The project contains several little projects for testing new technologies as JPA, EJB3, JEE 5, Spring, hibernate, Flex, GWT, Android...
Created about 1 year ago.

0 Users

Code for articles posted in jcoder.gr
Created about 1 month ago.

0 Users

Screencast and tutorial applications that show functionality in AppFuse 2.0. For live demos of AppFuse, please see http://demo.appfuse.org. To do the tutorials that create the applications in this ... [More] project, please see http://appfuse.org/display/APF/Tutorials. [Less]
Created about 1 year ago.

0 Users

Este sistema se encarga de la administración para escuelas de diferente niveles de educación.
Created 6 months ago.

0 Users

A sample web-app which shows these technologies together - maven, hibernate, jpa, spring mvc, spring security, spring web-flow and lastly Terracotta!!
Created 12 months ago.