Spring Boot 实战系列:01 Hello, World
2021-03-08 02:29
标签:start you ati 目录 应用 config ret 帮助 lan 什么是Spring Boot? Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run". ?0. 使用IDEA创建工程 确保 点击右上角的类似播放的一个按钮 稍等片刻,直到底部控制台打印出 然后打开浏览器地址栏输入 就能看到你刚刚创建的Web应用实例正在运行中,它会响应你的请求 如果您是第一次接触软件开发的话可能会因此感到兴奋和困惑——“这一切都发生了什么?", 不用着急,在之后的《Spring Boot 实战系列》中会逐步为您展示关于 感谢阅读! 关注公众号 Java全栈技术杂谈,不定期分享各类原创且干货的技术文章 Spring Boot 实战系列:01 Hello, World 标签:start you ati 目录 应用 config ret 帮助 lan 原文地址:https://www.cnblogs.com/toream/p/14209464.html概述 Overview
这是来自Spring Boot官方网站的定义,可以见得其旨在帮助开发者可以快速的建立起生产级的应用。创建工程 Create New Project
选择需要的Starter(可以理解成模块),这里只需要选择Spring Web即可
然后就得到了生成后的工程目录
可以先按照图片示例代码编写package com.springboot.helloworld;
?
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
?
@SpringBootApplication
@RestController
public class HelloworldApplication {
?
public static void main(String[] args) {
SpringApplication.run(HelloworldApplication.class, args);
}
?
@GetMapping("/")
public String sayHello() {
return "Hello, World!";
}
?
}
HelloworldApplication.java
文件中的代码如上所示,一切就绪后就可以迎接我们的第一个Web
服务了。Started HelloworldApplication in XX seconds
localhost:8080
Spring Boot
应用的各类知识
文章标题:Spring Boot 实战系列:01 Hello, World
文章链接:http://soscw.com/index.php/essay/61604.html