Java, Spring Boot, and React Boilerplate Project

I needed a project boilerplate that uses Java, Spring Boot on the back-end, and React on the front-end. Basically a combined Java, Spring Boot, and React Boilerplate Project. I’ll detail the setup in a later post. You can find the code here on GitHub: https://github.com/btaz/jaws.

Continue reading

Want to use Spring 3.0 milestone release from Maven?

I wanted to add the Spring 3.0 M4 milestone early access release to a Maven project to test out some of the new features. However SpringĀ  milestone releases are not readily available in the standard public Maven repositories, so what do you do? For the full explanation check out the link to “Spring/Maven Repositories” link …

Continue reading

Spring XML and defining end of line characters in a bean property

If you need to define and end of line character (EOL) like n in your Spring XML files in a bean property you can’t do this <bean id=”some-bean-id” class=”some-class”> <property name=”my-property-name” value=”n”/> </bean> This simply wont work. You’ll end up with a backslash followed by the letter n. What you have to do is to …

Continue reading