Posts

Showing posts from October, 2019

Spring Boot, parsing the pom.xml

Image
Spring Boot can be easy to start up:options Diving right in letting Spring Boot introductions be covered in another blog.... One way is to navigate to:  https://start.spring.io and find a page like the below: Just select the options then click Generate (not shown).  This will download a zip file which can then be imported easily into your IDE.  I use STS eclipse, after import, the result was: Because I selected Maven, there is a pom.xml file which is instructive.  It includes the necessary dependencies.  I could have specified them on the web page, but I usually just paste them in. Below is the pom.xml file contents from the demo: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelV...