Spring
13 entriescalling a spring jpa namedQuery directly
As in Test.java, you can execute a NamedQuery defined in orm.xml directly with the …
spring redis integration
Add the following to pom.xml. 1 2 3 4 5 6 7 8 9 10 <dependency> …
building a website with spring + sitemesh
Let’s set up sitemesh. pom.xml 1 2 3 4 5 <dependency> <groupId>opensymphony</groupId> …
spring jpa save
In jpa you save with the repository.save method Like the Member class, @OneToMany or @ManyToOne …
practicing spring jpa @NamedQuery, @NamedNativeQuery
In jpa.. you can query data through a repository with findAll or the findOneBy…. series, but you …
spring jpa query practice
Tested entity mapping plus queries.. Given table relationships like this 1 tb_member -< …
spring jpa setup and test (maven config)
I develop with mybatis most of the time.. But JPA is supposedly the trend, so I wired it into a …
using spring batch
Tried spring-batch recently.. worked out well. Being able to set the transaction commit size and …
hadoop + spring integration test 2 - hadoop 2.6.x with spring 4.0 (MapReduce WordCount example)
Add the following to context-hadoop.xml. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <hdp:configuration …
hadoop + spring integration test - hadoop 2.6.x with spring 4.0
Hadoop install and setup as below (osx Yosemite.) …