All posts tagged with 'JPA'

Validate nested Transaction settings with Spring and Spring Boot

25-Sep-18

The Spring Framework has had an outstanding, declarative Transaction management for years now. The configurable options maybe overwhelming at first, but important to accommodate many different scenarios. Three of them stick out: propagation, isolation and to some lesser extend, read-only mode (more on that a bit later) propagation describes what happens if a transaction is […]

Read the complete article »

June Wrap up

30-Jun-17

June was a very though month. I did quite some traveling and thus had hardly time for biking. Cycling wise worst June ever, below 300km in total. Spring Boot Buch Two weeks ago I received several drafts for the cover and I’m quite happy with them and already decided for one. (By the way, I […]

Read the complete article »

Get your InstrumentationLoadTimeWeaver recognized by LocalContainerEntityManagerFactoryBean

10-Apr-16

org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean is LoadTimeWeaverAware and as thus should be provided with such. Usually this would be done with a @Configuration, but then there is SPR-10856. In short: a LoadTimeWeaverAwareProcessor is provided before post processing the bean factory. This means that an @Bean inside a configuration class comes to load for load time weaving. At least for […]

Read the complete article »

Boot your application with Spring Boot

25-Feb-14

This is the first Post in my series Developing a web application with Spring Boot, AngularJS and Java 8 and has been featured in This Week in Spring – April 15, 2014. Spring Boot makes it very easy to get you up and running with the Spring ecosystem without the need for XML configuration and […]

Read the complete article »