本文主要是介绍springboot-1-hello,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
创建springboot项目
1、使用网站https://start.spring.io/
2、IDEA内部集成上方网站创建
项目编辑
1、controller,dao,pojo,service包在Application类同级目录下创建
2、controller编写
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class helloController {
@RequestMapping("/hello")
public String hello(){
return "helloworld";
}
}
3、banner.txt更改启动图案
4、application.properties更改配置属性
5、使用Application类启动
6、启动完成
这篇关于springboot-1-hello的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!