Below you will find pages that utilize the taxonomy term “spring”
Presentation
Fully Reactive: Spring, Kotlin, and JavaFX Playing Together
Spring Framework 5 brings full reactive support to developers everywhere. What better way to demo reactive programming than to actually build something live? Trisha will live code an end-to-end application using Spring Framework 5, Spring Boot, Reactor, Kotlin, JavaFX, and maybe even some MongoDB, all built using IntelliJ IDEA. During this session, we’ll see how these different components can work together really easily using Spring. What could possibly go wrong?
Post
Amazing!
Today, I found my own blog useful. I was configuring Spring validation on my new project, and had to remind myself how to do it. We configured validation on the new project in less than an hour, which beats the two days it took me to work out how to do it the first time.
And I impressed one of my new work collegues. Apparently I am now the Spring Guru.
Post
AOP Caching
Today I would like to document my experiences implementing caching with Aspect Oriented Programming (AOP) and annotations.
Post
Validation with Spring Modules Validation
So if java generics slightly disappointed me lately, what have I found cool?
I’m currently working on a web application using Spring MVC, which probably doesn’t come as a big surprise, it seems to be all the rage these days. Since this is my baby, I got to call the shots as to a lot of the framework choices. When it came to looking at implementing validation, I refused to believe I’d have to go through the primitive process of looking at all the values on the request and deciding if they pass muster, with some huge if statement.