[Other] Andrews official website SpringBoot rapid integration method

Now the background to develop more popular SpringBoot, so there is time to take advantage of their own look, feel very convenient to use, you do not think that traditional project started very time-consuming, but also in the official website can choose which features popular third-party integration.

If you want to start a project SpringBoot Home was Quguan network: https: //start.spring.io/, choose their own SpringBoot integrated program, click on the download is complete generate a project, and then use your favorite IDE opens the project on it.

Now take a look at the official website of the project are generally integrated SpringBoot what options:

 

Project:
Construction of the program selected projects have maven and gradle two types of general background development will choose maven, gradle I have not tried it, take the time to look behind the construction scheme of gradle.
When we choose maven, download the project is a maven project, use the IDE to open a maven project on it.

Language:
language can support Java, Kotlin, Groovy, Java rarely in general we are back to try other languages, but I have not tried to select other languages.

Spring Boot:
Select version of Spring Boot, in general, according to their need to choose, if you want to experience the new features on the choice of high version.

Project Metadata (setting item coordinates and project name):
 - Group ID coordinates project organization unique identifier, the corresponding item in the package is the actual packet.
 - coordinate Artifact ID is a unique identifier of the item, the actual item corresponding to the name of the project name.


Dependencies:
If you need additional features, you can check the corresponding module, the default module provides many common features, if not then they can add the above referenced coordinates manually.
If the references are not added anything, in fact, only org.springframework.boot: spring-boot-starter this reference, you can also manually add other libraries in pom.xml.

Guess you like

Origin www.cnblogs.com/nicojerry/p/11758798.html