标签:version cat 基于 应用 主程序 dep frame str ons
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>
/** * @SpringBootApplication 标注主程序:说明此类是 SpringBoot 应用 */ @SpringBootApplication public class HelloWorldMainApplication { public static void main(String[] args) { //springboot 应用启动 SpringApplication.run(HelloWorldMainApplication.class, args); } }
@Controller public class HelloController { @ResponseBody @RequestMapping("/hello") public String hello(){ return "Hello World"; } }
http://localhost:8080/hello
页面响应:Hello World
pom 文件添加如下内容
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
在 IDEA 右侧边栏,maven --> lifecycle--运行 package 命令进行打包,然后启动打包后的 jar 文件,访问 http://localhost:8080/hello 即可;
标签:version cat 基于 应用 主程序 dep frame str ons
原文地址:https://www.cnblogs.com/wdh01/p/12677092.html