java中的接口是类吗
246
2022-12-11
SpringBoot thymeleaf的使用方法解析
1.pom.xml添加相应依赖
2.application.properties
#thymeleaf
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffihttp://x=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html; charsetSnKWdnC=utf-8
spring.thymeleaf.cache=false
3.common.xml文件,注意文件路径
hello,
4.添加TemplateController.java
package myshop.controller;
import java.util.Map;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/*
* 这里使用@Controller而不是@RestController
* 还有模板文件中得去掉
* 所有标签得闭合
*
* */
@Controller
@RequestMapping("/templates")
public class TemplateController {
@RequestMapping("/common")
public String Common(Map
{
map.put("name", "天恒");
return "Common";
}
}
5.添加app.java
package myshop;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class App {
public static void main(String[] args) {
// TODO Auto-generated method stub
SpringApplication.run(App.class, args);
}
}
6.访问路径,完成
http://localhost:8080/templates/common
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~