本帖最后由 leeao 于 2018-1-25 16:52 编辑
一、打开eclipse创建一个maven项目,按照下方图片顺序创建。(如果你的eclipse没有集成maven工具的话,请自行百度搜索:eclipse集成maven)到这个,一个maven工程就创建成功了。下面我们需要引入jar包,在这里,因为我们创建的是maven工程,因此引入jar包只需要在pom.xml文件中引入相关的依赖就行了,非常之方便 二、配置我们的pom.xml文件<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>dean</groupId>
<artifactId>dean-bk</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!-- 继承springboot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.8.RELEASE</version>
</parent>
<!-- 配置我们的编码集、JDK版本、springboot版本、数据库版本 -->
<!-- 注:还可以配置更多的版本信息,在这里就不多说了,有兴趣的朋友可以进一步研究一下 -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<mybatis-spring-boot.version>1.2.0</mybatis-spring-boot.version>
<mysql-connector.version>5.1.39</mysql-connector.version>
</properties>
<!-- 下面我们就要引入相关的jar包了 -->
<dependencies>
<!-- springboot 基础包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- springboot web 包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- springboot web开发thymeleaf模板 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- 截止到这里,其实我们已经可以完成一个springboot的入门案例了。 我就不往下配置更多的依赖了-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
在配置完pom文件之后,有时候我们会发现我们的工程有报错的情况。然后在Problems视图下看见如下信息:
看到这不用着急:它提示我们:Project configuration is not up-to-date with pom.xml. Select: Maven->Update Project... from the project context menu or use Quick Fix. 因此我们只要点击我们的工程->右键,点击maven->点击update project等待jar包更新完毕,就可以了。 三、写我们程序的主类,这相当启动tomcat服务package com.gc.dean; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; /**
* 程序启动类
* @author dean
*
*/
@SpringBootApplication
public class App {
public static void main(String[] args) {
SpringApplication.run(App.class, args);
}
} 注:在这里我们加入了@SpringBootApplication这个注解(不能少) 四、写我们的Cotrollerpackage com.gc.dean.controller; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; @RestController
public class UserController {
@RequestMapping("/hello")
public String login() {
return "hello dean";
}
} 五、启动我们的程序,在浏览器中输入http:localhost:8080/hello①运行第三步我们写的主类里的main方法。 ②打开浏览器输入上方地址 OK,到这里我们的一个springboot入门级应用程序就结束了。你也来试一试吧
|