跟我学Spring Boot(二)Hello World
2024-08-27 18:15:55
1、打开DemoApplication添加如下代码
package com.example; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping; @Controller //1
@SpringBootApplication
public class DemoApplication { //2
@RequestMapping("/helloboot")
public String helloBoot(Model model){
return "index";
}
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
2、在resources/template/目录下新建index.html
代码如下
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Title</title>
</head>
<body>
hello world
</body>
</html>
这里需要注意的是meta 部分一定要有结束符不然后提示下面错误
org.xml.sax.SAXParseException: 元素类型 "meta" 必须由匹配的结束标记 "</meta>" 终止。
最新文章
- linux Mint mysql 安装
- 通过select的value值来改变textarea内字体和大小
- hdu 1873 看病要排队(优先级队列)
- String的compareTo()方法返回值
- SQL-Server数据库学习笔记-表
- uva 12096 The SetStack Computer
- WPF 显示初始化界面
- Android ListView特别属性用法
- iphone手机上的click和touch
- Android之HandlerThread
- HTML5 使用FileReader实现调用相册、拍照功能
- ●HDU 1695 GCD
- i春秋——Misc之百度杯
- 一致性哈希算法----nginx负载均衡器配置之一
- Django之form表单
- 群等变网络的pytorch实现
- 记一次SQL性能优化,查询时间从4000ms优化到200ms.
- Socket 相关资料(随笔)
- word论文文献引用上标括号
- C#中模拟用户登陆SharePoint网站