Spring

13 entries
201511 · 13

calling a spring jpa namedQuery directly

As in Test.java, you can execute a NamedQuery defined in orm.xml directly with the …

springjpa
Spring1 min
201511 · 10

spring redis integration

Add the following to pom.xml. 1 2 3 4 5 6 7 8 9 10 <dependency> …

springredis
Spring2 min
201510 · 28

building a website with spring + sitemesh

Let’s set up sitemesh. pom.xml 1 2 3 4 5 <dependency> <groupId>opensymphony</groupId> …

springsitemesh
Spring3 min
201510 · 21

spring jpa save

In jpa you save with the repository.save method Like the Member class, @OneToMany or @ManyToOne …

springjpa
Spring2 min
201510 · 08

practicing spring jpa @NamedQuery, @NamedNativeQuery

In jpa.. you can query data through a repository with findAll or the findOneBy…. series, but you …

springjavajpa
Spring1 min
201510 · 07

spring jpa query practice

Tested entity mapping plus queries.. Given table relationships like this 1 tb_member -< …

springjavajpa
Spring3 min
201510 · 05

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 …

springjpa
Spring3 min
201508 · 27

using spring batch

Tried spring-batch recently.. worked out well. Being able to set the transaction commit size and …

spring
Spring1 min
201504 · 15

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 …

hadoopspring
Spring2 min
201504 · 12

hadoop + spring integration test - hadoop 2.6.x with spring 4.0

Hadoop install and setup as below (osx Yosemite.) …

hadoopspring
Spring2 min