jsp标签在spring boot中的关键用法

Posted max-hou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp标签在spring boot中的关键用法相关的知识,希望对你有一定的参考价值。

<form:form modelAttribute="user" action="save" method="post" >//以form:开头,后面接表单类型.modelAttribute类型对接模型

用户名:<form:input path="username"></form:input><br>//path等同于type属性

密码 :<form:password path="password"></form:password><br>
<button type="submit">提交</button> </form:form>

 

以上是关于jsp标签在spring boot中的关键用法的主要内容,如果未能解决你的问题,请参考以下文章

嵌入式 Tomcat 中带有 JSP 标签库的 Spring-Boot

与 Spring Boot 一起使用时,JSP 页面中的 contextPath 为空

spring boot 结合jsp简单示例

jsp中的标签遍历

我应该将jsp文件放在spring-boot项目中的位置

Spring Boot无法解析JSP中的模型数据[重复]