接下来就开始从0开始创建这个项目了。
首先新建个 maven 项目
菜单 -> File -> New -> Other -> Maven -> Maven -> Maven Project -> New Maven Project
勾上这个 Create a simple project (skip archetype selection), 看吧,Springboot就是个简单的maven 项目
二:输入项目参数
接着在参数里输入红色框框这些数值
三:pom.xml
用以下pom.xml里面的内容覆盖掉项目里的pom.xml。
覆盖后,右键点击项目->Maven->Update Project 更新一下项目。
这个pom.xml就指定了当前项目需要用到的jar包。
4.0.0 com.how2java springboot 0.0.1-SNAPSHOT springboot springboot org.springframework.boot spring-boot-starter-parent 1.5.9.RELEASE org.springframework.boot spring-boot-starter-web junit junit 3.8.1 test 1.8 org.springframework.boot spring-boot-maven-plugin
四:Application.java
创建 Application.java,其注解 @SpringBootApplication 表示这是一个SpringBoot应用,运行其主方法就会启动tomcat,默认端口是8080
package com.how2java.springboot; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }
五:HelloCaontroller.java
接着创建控制器类HelloController, 这个类就是Spring MVC里的一个普通的控制器。
@RestController 是spring4里的新注解,是@ResponseBody和@Controller的缩写。
package com.how2java.springboot.web; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @RequestMapping("/hello") public String hello() { return "Hello Spring Boot!"; } }
六:运行并测试
接下来就运行Application.java, 然后访问地址
http://127.0.0.1:8080/hello
就能看到测试效果了