Categories
Search
My Tweets
- @misterlosso I have accepted a position already. 2 weeks ago
- Spring in Action 4th Ed, Spring in Practice & Spring Integration in Action 50% today use code dotd0508cc http://t.co/kjcQ15rDM4 2 weeks ago
- @bytor99999 No, the site is redirected, pom file gend as artifactory page, causing mvn builds to fail. 2 weeks ago
- Spring Dep Mgmt Repo - use http://t.co/xFJVnMHTpO | milestone | snapshot. If using http://t.co/Ns8nUF8cqV, you'll get repo... 2 weeks ago
- Accepted Integration Architect position with Cigna. Can't wait to get started. 3 weeks ago
Category Archives: Hibernate
Simpler JPA with Spring Data-JPA
How to configure your Spring application with Simple CRUD configuration with Spring Data-JPA. 1. Add Spring Data-JPA to project configuration. In your Maven pom.xml file <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> <version>1.2.0.RELEASE</version> </dependency> 2. Configure JPA Entity … @Entity public class Product { … Continue reading
Posted in Hibernate, JPA, Spring, Spring Data, Spring Framework
Tagged Hibernate, JPA, ORM, Persistence, Spring Data, spring framework, SpringData
12 Comments
Annotation Reference for Spring Projects
Annotations are available for Spring and Java projects. I was unsuccessful in finding a single consolidated set of the annotations. So, I thought “What a great gap to fill.” However, what I thought would be a fairly simple endeavor, turned … Continue reading
Posted in Annotations, AOP, Hibernate, Java, JMX, JPA, JUnit, REST, SOAP, Spring, Spring AOP, Spring Batch, Spring Framework, Spring Integration, Spring MVC, Spring Roo, Spring Security, Web Flow, Web Services
Tagged Annotations, Java, JSR-168, JSR-220, JSR-222, JSR-224, JSR-250, JSR-299, jsr-303, JSR-314, JSR-317, JSR-318, JSR-330, Spring, spring framework
9 Comments
Using Spring 3.0 Custom Type Converter
The Trouble with Strings Data entering or leaving our application is frequently in string format (i.e. XML). As a developer, I would like a way to register custom data type converters for my business entities. Custom business data types might … Continue reading
Posted in Hibernate, JodaTime, JPA, Roo, Spring
Tagged Conversion, Formatters, Formatting, Hibernate, JodaTime, JPA, roo, Spring, Spring Roo, validation
5 Comments
View Hibernate SQL with Data Values with Elvyx
Want to see SQL with values in Hibernate? One of the early problems I had to work on in a Spring application was with Hibernate. Since I was not sure what SQL was being generated by Hibernate, I turned on … Continue reading