Loading

上一页 1 ··· 3 4 5 6 7
摘要: #applicaton.yml 配置mybatis-plus: configuration: # 是否将sql打印到控制面板(该配置会将sql语句和查询的结果都打印到控制台) log-impl: org.apache.ibatis.logging.stdout.StdOutImpl#效果: 阅读全文
posted @ 2020-03-09 10:22 TinaRoot 阅读(11687) 评论(2) 推荐(0) 编辑
摘要: 页面展示 HTML 代码 <blockquote class="layui-elem-quote demoTable"> <div class="layui-inline"> <div class="layui-input-inline"> <input type="text" value="" p 阅读全文
posted @ 2020-03-08 22:08 TinaRoot 阅读(1423) 评论(1) 推荐(0) 编辑
摘要: 需要开启 el isELIgnored="false" 这时已经可以正常访问了 阅读全文
posted @ 2020-03-02 14:47 TinaRoot 阅读(148) 评论(0) 推荐(0) 编辑
摘要: <!-- 加入 pagehelper 分页插件 jar包--><dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version> 阅读全文
posted @ 2020-03-01 12:22 TinaRoot 阅读(943) 评论(5) 推荐(1) 编辑
摘要: jar包:<!-- 热部署 --><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional></dep 阅读全文
posted @ 2020-03-01 12:00 TinaRoot 阅读(143) 评论(0) 推荐(0) 编辑
摘要: $("input[name=sex][value=女]").attr("checked", data.data.adminInfoEntity.adminInfoSex == 1 ? true : false);$("input[name=sex][value=男]").attr("checked" 阅读全文
posted @ 2020-03-01 11:54 TinaRoot 阅读(3330) 评论(0) 推荐(0) 编辑
摘要: /** * * AdminEntity 管理员实体类 * getAdminId 获取管理员实体类中的id * */ @Testvoid adminIdList () { List<AdminEntity> adminEntityList = adminService.queryAdminInfoAl 阅读全文
posted @ 2020-02-22 03:27 TinaRoot 阅读(12377) 评论(0) 推荐(1) 编辑
摘要: ServletContext context = request.getServletContext();/** * 从ServletContext中获取计数器对象 */Integer count = (Integer) context.getAttribute("counter");/** * 如 阅读全文
posted @ 2020-02-20 22:01 TinaRoot 阅读(1833) 评论(0) 推荐(0) 编辑
摘要: 1.先进入 File 2.进入 Editor 找到 File and Code Templates 并点击 3.右侧点击 lncludes 4.第二项 File Header /** * @author PIGS-猪农·杨 * @date ${DATE} ${TIME} * @version 1.0 阅读全文
posted @ 2020-02-12 22:32 TinaRoot 阅读(1339) 评论(0) 推荐(1) 编辑
摘要: Spring 的入门案例:(IOC) IOC 的底层实现原理(结构图2.01) 图:2.01 IOC:Inversion of Control 控制反转,指的是对象的创建权反转(交给)给Spring, 作用是实现了程序的解耦合 步骤一:下载 Spring 的开发包: 官网:http://spring 阅读全文
posted @ 2019-11-03 01:16 TinaRoot 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7