摘要: 整合SpringBoot与Mybatis 1、创建一个Spring Boot项目。pom配置文件中添加依赖,这里我们采用了阿里巴巴的Druid连接池 <!-- 阿里巴巴的Druid数据源依赖启动器 --><dependency> <groupId>com.alibaba</groupId> <art 阅读全文
posted @ 2020-09-08 11:02 codeing123 阅读(833) 评论(0) 推荐(0)
摘要: metismenu的使用使用参考网址:https://mm.onokumus.com/ 使用 1、加入metisMenu所有样式 <!-- 加载metisMenu所用样式--> <link rel="stylesheet" th:href="@{/bootstrap4/assets/metismen 阅读全文
posted @ 2020-09-08 08:28 codeing123 阅读(2934) 评论(0) 推荐(0)
摘要: Bootstrap表单验证 form表单的注意点: form标签内加入 novalidate属性,并为该表单添加id 每个需要验证的标签内都要加入 required属性 提示信息固定写法:紧跟着要验证的标签后面添加 <div class="invalid-feedback"> 用户名至少6位</di 阅读全文
posted @ 2020-09-08 08:16 codeing123 阅读(509) 评论(0) 推荐(0)