Spring-Boot say hello world

Posted sunyangcoder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring-Boot say hello world相关的知识,希望对你有一定的参考价值。

 demoApplication代码

@Controller
@EnableAutoConfiguration
public class DemoApplication {

	public static void main(String[] args) {
		SpringApplication.run(DemoApplication.class, args);
	}
	
	@RequestMapping("/")
	@ResponseBody
	String home() {
		return "hello world";
	}
	
}

  

以上是关于Spring-Boot say hello world的主要内容,如果未能解决你的问题,请参考以下文章

Say Hello的测试类及结果

Just say hello to algorithm

Django_say_hello

php基础-5

装饰器详解

详解Python的装饰器