1.先创建一个SpringBoot项目
2.Springboot测试,创建一个HelloController类用于转发链接
package com.example.demo;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@EnableAutoConfiguration
public class HelloController {
@RequestMapping("/hello")
private String index() {
return "hello world";
}
}
3.运行完成后输入http://localhost:8080/hello看页面效果,如果出现下面情况就是完成了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)