I don’t like SpringBoot because of hidden dependencies and unknown springconfigs behind annotations. But there is one more problem with SpringBoot – as usual latest examples from Pivotal (and others as well) are written based on SpringBoot and sometimes it’s not possible easily to figure out how properly to set up plain [...]
Andriy Andrunevchyn
It’s not necessary to add compiler plugin to your project when you want to setĀ -source/-targetĀ java version. Just add following properties, which are the default property names for the plugin parameters. <properties> <maven.compiler.source>1.8</maven.compiler.source> [...]
Andriy Andrunevchyn
There are few simple steps Create root folder for project Open command line there Execute mvn archetype:generate You will see long list of available archetypes and question at the end Choose a number or apply filter (format: [groupId:]artifactId, case sensitive contains): 1057: Choose appropriate number and proceed with [...]
Andriy Andrunevchyn
Recent Comments