springboot学习(一):创建项目

springboot学习(一):创建项目

springboot学习(一):创建项目

springboot学习(一):创建项目

springboot学习(一):创建项目

package com.glory.demo.Controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody; @Controller
public class testController {
@RequestMapping("/hello")
@ResponseBody
String hello() {
return "Hello world";
}
}

  springboot学习(一):创建项目

springboot学习(一):创建项目

上一篇:IntelliJ IDEA src下新建包, 没有层级结构


下一篇:Android Fragment (二) 实例1