Spring-Boot学习
Posted YaphetsDiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring-Boot学习相关的知识,希望对你有一定的参考价值。
入门实例 - HelloWorld
File > New > Spring Starter Project
项目创建完成:
这样就完成了项目的创建,下面我们创建一个 HelloController.java
package com.example.demo; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/hello") public class HelloController { static { System.out.println("HelloController was on line!"); } @RequestMapping("/SpringBoot") public String hello() { return "hello Spring Boot"; } }
在浏览器输入 http://localhost:8080/bootdemo/hello/SpringBoot
输出 hello Spring Boot
实现成功!
以上是关于Spring-Boot学习的主要内容,如果未能解决你的问题,请参考以下文章
使用片段时 Intellij 无法正确识别 Thymeleaf 模型变量