spring boot 使用thymeleaf模版传递变量control内的响应路径不能使用@getpaing注解

Posted 闲来很忙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 使用thymeleaf模版传递变量control内的响应路径不能使用@getpaing注解相关的知识,希望对你有一定的参考价值。

今天遇到一个奇怪的事情:

在springboot的control类中响应路径“/hello”使用@requestmapping注解可以正常访问。

@RequestMapping(value = "/hello",method = RequestMethod.GET)
    public String hello(Model model) {
        model.addAttribute("name", "Dear");
        return "hello";
    }

显示如下:

可是,在同一个类型中增加另一个响应路径使用@Getmapping注解,访问就会报错。

在一个control中有2个响应路径指向同一个模版,我发现是这个原因,可是为什么呢?求大神们解答?

 

以上是关于spring boot 使用thymeleaf模版传递变量control内的响应路径不能使用@getpaing注解的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot : ORM 框架 JPA 与连接池 Hikari

Get|Spring Boot 五种热部署方式

SpringBoot使用thymeleaf

spring boot 跳转页面和热加载的坑

峰哥说技术:08-Spring Boot整合FreeMarker视图

spring-boot主要注解