<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
a.html內容以下:css
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h1>AAaaAA</h1> </body> </html>
b.html文件內容以下:html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h1>BBbbBB</h1> </body> </html>
package com.sic.equipment.controller; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller @EnableAutoConfiguration @RequestMapping("/a") public class TestController { @RequestMapping("/2") public String aa(){ return "a"; } @RequestMapping("/3") public String ab(){ return "qiu/b"; } }