Quickly create a spring boot project (IDEA)

  • Note:
    pay attention to network connectivity issues when creating Spring Boot, keep the network open.
  • Step
    [File] -> [New] -> [Project] -> [Spring Initializr] -> select the JDK version -> [Next]
    Here Insert Picture Description
    GroupID and Artifact setting items. Select the appropriate language to generate a jar or war bag and JDK version and
    Here Insert Picture Description
    check create dependencies needed for the project, such as a database, web, etc. dependence, where we brief, are not specifically explain, depend on the choice of a web
    Here Insert Picture Description
    selection after completion, click finish to complete new projects to wait for the completion of new projects.
    Here Insert Picture Description
    PS: You can delete a file marked red
    Here Insert Picture Description
  • .gitignore control those files or file version control with git do with this folder will not be submitted (not git can be deleted if not influence)
  • HELP.md md is a document format of this document is to help your project (can not affect delete)
  • On mvnw linux script processing mevan version compatibility issues (delete no impact)
  • Scripting mevan version compatibility issues on mvnw.cmd windows (can be deleted no impact)
  • spring-boot.iml IDEA is unique to each imported file IDEA project will generate a project with the same name .iml file is used to save your configuration for this project
    will generate but because of the configuration may be lost (deleted after re-import program resulting in abnormal program)
Released eight original articles · won praise 0 · Views 196

Guess you like

Origin blog.csdn.net/Dawn____Dawn/article/details/104007772