springboot-helloworld实现
Posted nidegui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot-helloworld实现相关的知识,希望对你有一定的参考价值。
springboot快速入门
首先,建立一个空的项目
第二步:
建立一个springboot项目
第三步:添加依赖:
<?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.leyou.demo</groupId> <artifactId>springboot-demo</artifactId> <version>1.0-SNAPSHOT</version> <properties> <java.version>1.8</java.version> </properties> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.0.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> </project>
第四步:编写控制器
package com.java.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.RestController; /** * @author nidegui * @create 2019-05-26 10:15 */ @Controller public class HelloController { /** * * @return */ @ResponseBody @RequestMapping("/hello") public String hello(){ return "springboot-nihao"; } }
第五步:启动application
第六步:访问
以上是关于springboot-helloworld实现的主要内容,如果未能解决你的问题,请参考以下文章