标签:技术 使用 void 生成 oid toc 引导 项目 map
Spring Boot的主要优点:
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class helloController {
@ResponseBody
@RequestMapping("/hello")
public String hello(){
return "hello world!";
}
}
@SpringBootApplication
public class helloMailApplication {
public static void main(String[] args) {
SpringApplication.run(helloMailApplication.class,args);
}
}
运行效果如下:
在web端访问 http://localhost:8080/hello
标签:技术 使用 void 生成 oid toc 引导 项目 map
原文地址:https://www.cnblogs.com/yewu123/p/11278984.html