写一个页面,使用thymeleaf引擎,点击按钮跳转到controller方法中
时间: 2023-05-21 10:06:16 浏览: 505
很高兴回答你的问题!以下是使用Thymeleaf引擎编写页面,并使用按钮跳转到控制器方法的示例代码:
HTML代码:
```
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<h1>欢迎来到我的页面!</h1>
<button type="button" onclick="location.href='/controller'">跳转到控制器方法</button>
</body>
</html>
```
在这个示例中,我们创建了一个HTML页面,其中包含一个按钮,当用户单击它时,将跳转到名为"controller"的控制器方法。
Java代码:
```
@Controller
public class Controller {
@GetMapping("/controller")
public String controllerMethod() {
return "redirect:/success";
}
@GetMapping("/success")
public String successMethod() {
return "success";
}
}
```
在这个示例中,我们创建了一个控制器,其中包含两个方法。第一个方法名称为“controllerMethod”,使用@GetMapping注释标记,它将在用户单击页面上的按钮时调用。该方法返回一个"redirect:/success"字符串,该字符串将导致重定向到"success"方法。第二个方法名称为“successMethod”,它也标记为@GetMapping注释。该方法返回一个字符串"success",该字符串表示我们想要呈现的视图的名称。
最后,我们还需要在application.properties文件中添加以下信息:
```
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
```
这将告诉Spring Boot从类路径中的“templates”文件夹中查找我们的HTML文件,并使用Thymeleaf引擎呈现它们。
阅读全文