快速搭建SpringBoot第一个Hellowrold
程序员文章站
2022-04-19 23:05:40
...
spring-boot-demo-helloworld
本 demo 演示如何使用 Spring Boot 写一个hello world
pom.xml
<?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>
<artifactId>spring-boot-demo-helloworld</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>spring-boot-demo-helloworld</name>
<description>Demo project for Spring Boot</description>
<!-- 起步依赖只做了版本锁定,并不实际引入 -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.7.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>
<!--web启动依赖-->
<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>
<!--Hutool是一个Java工具包-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>
</dependencies>
<build>
<finalName>spring-boot-demo-helloworld</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
SpringBootDemoHelloworldApplication.java
/**
* <p>
* SpringBoot启动类
* </p>
*
* @package: com.xkcoding.helloworld
* @description: SpringBoot启动类
* @date: Created in 2018/9/28 2:49 PM
* @copyright: Copyright (c)
* @version: V1.0
*/
@SpringBootApplication //加上SpringBootApplication 注解标明这个是个启动类
@RestController
public class SpringBootDemoHelloworldApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootDemoHelloworldApplication.class, args);
}
/**
* Hello,World
*
* @param who 参数,非必须
* @return Hello, ${who}
*/
@GetMapping("/hello")
public String sayHello(@RequestParam(required = false, name = "who") String who) {
if (StrUtil.isBlank(who)) {
who = "World";
}
return StrUtil.format("Hello, {}!", who);
}
}
application.yml
server:
port: 8080
servlet:
context-path: /demo
上一篇: WebView使用总结
下一篇: 很帅气的男孩
推荐阅读
-
SpringBoot环境搭建及第一个程序运行(小白教程)
-
idea使用spring Initializr 快速搭建springboot项目遇到的坑
-
快速搭建一个SpringBoot项目(纯小白搭建教程)
-
玩转 SpringBoot 2 快速搭建 | IntellJ IDEA篇
-
基于SpringBoot搭建应用开发框架 基于SpringBoot-Dubbo的微服务快速开发框架
-
基于SpringBoot搭建应用开发框架 基于SpringBoot-Dubbo的微服务快速开发框架
-
从零搭建基于SpringBoot的秒杀系统(二):快速搭建一个SpringBoot项目
-
快速搭建一个springboot项目
-
使用maven快速搭建SpringBoot的SSM项目
-
SpringBoot快速搭建