Spring入门Demo
前提:
idea jdk和mave已经下载安装并且配置好环境
新建项目:
![](https://img.haomeiwen.com/i1716179/a5eb77179f9cd650.png)
![](https://img.haomeiwen.com/i1716179/ade25879e3f3694b.png)
![](https://img.haomeiwen.com/i1716179/3202f406d7845c08.png)
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.wq</groupId>
<artifactId>beauty</artifactId>
<version>1.0-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
![](https://img.haomeiwen.com/i1716179/1b90d177297df078.png)
![](https://img.haomeiwen.com/i1716179/5192a8b774dffbc3.png)
![](https://img.haomeiwen.com/i1716179/53bf123ef9c46449.png)
![](https://img.haomeiwen.com/i1716179/e2fa726c5e71d418.png)
![](https://img.haomeiwen.com/i1716179/3f232a01fd7ff8ef.png)
![](https://img.haomeiwen.com/i1716179/ab3cc807467d51f0.png)
![](https://img.haomeiwen.com/i1716179/52700228dd88a4ee.png)
![](https://img.haomeiwen.com/i1716179/2f9776ee4c62c455.png)
![](https://img.haomeiwen.com/i1716179/62d7f064b6bfc4da.png)
![](https://img.haomeiwen.com/i1716179/2c299adb54ca3e44.png)
![](https://img.haomeiwen.com/i1716179/fd343648d0f08cd9.png)
![](https://img.haomeiwen.com/i1716179/c218e56c091ba801.png)
![](https://img.haomeiwen.com/i1716179/a599565ee4a69160.png)
![](https://img.haomeiwen.com/i1716179/8495530cd8903a93.png)