本文共 2094 字,大约阅读时间需要 6 分钟。
http://start.spring.io/
,据说不带s的快 http://localhost:8080
@Controller@EnableAutoConfigurationclass HelloController { @RequestMapping("/") @ResponseBody fun index(): String { return "Hello World!" }}
访问http://localhost:8080/
首页 首页内容
@Controller@EnableAutoConfigurationclass HelloController { @RequestMapping("/index.html") fun index() : String { return "index" }}
访问http://localhost:8080/index.html
org.springframework.boot spring-boot-devtools true true org.springframework.boot spring-boot-maven-plugin true
修改idea
I. Ctrl+Alt+S. Build,Execution,Deployment -> Compiler, 勾选Build project automatically.II. Ctrl+Shift+Alt+ /
/** * 数据类 */data class Student ( val name: String, val age: Int)
@Controllerclass HelloController { @RequestMapping("/students.html") fun students(map: MutableMap): String { val list = ArrayList () for (i in 0..9) { list.add(Student("张三$i", 23+i)) } // 返回给页面的数据 map["sList"] = list return "students" }}
学生 所有学生
写完之后html代码报红线,使用Alt+Enter修复即可,也可不修复。(此为编辑器的问题)
效果
转载地址:http://solhx.baihongyu.com/