随笔分类 -  项目

摘要:1.封装ResponseUtils(对标准的Code、Message进行设置) package com.imooc.oa.utils;import com.fasterxml.jackson.annotation.JsonInclude;import com.fasterxml.jackson.co 阅读全文
posted @ 2022-12-06 23:07 李林林 阅读(245) 评论(0) 推荐(0)
摘要:1.login.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>慕课网OA办公系统</title> <!-- 引入样式 --> <link rel="stylesheet" type="text/c 阅读全文
posted @ 2022-12-06 22:41 李林林 阅读(24) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-11-28 20:36 李林林 阅读(14) 评论(0) 推荐(0)
摘要:1. com.imooc.oa.controller创建servlet package com.imooc.oa.controller; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson 阅读全文
posted @ 2022-11-20 15:49 李林林 阅读(116) 评论(0) 推荐(0)
摘要:1.创建实体类(entity下) package com.imooc.oa.entity; public class User { private Long userId; //user_id private String username; private String password; pri 阅读全文
posted @ 2022-11-15 01:07 李林林 阅读(27) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-11-09 01:29 李林林 阅读(15) 评论(0) 推荐(0)
摘要:1.在pom.xml中添加依赖 <!--Druid数据库连接池--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.2.14</version> </dependency> 阅读全文
posted @ 2022-11-02 21:17 李林林 阅读(85) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-03-04 16:54 李林林 阅读(46) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-03-03 20:47 李林林 阅读(51) 评论(0) 推荐(0)
摘要:1.单个对象的复制 EbookResp ebookResp = new EbookResp(); BeanUtils.copyProperties(ebook, ebookResp); 2.list对象的复制 List<EbookResp> respList = new ArrayList<>(); 阅读全文
posted @ 2022-03-03 20:03 李林林 阅读(68) 评论(0) 推荐(0)
摘要:1.根据名称模糊查询电子书 2.流程 阅读全文
posted @ 2022-03-03 19:53 李林林 阅读(51) 评论(0) 推荐(0)
摘要:1.电子书表 2.流程 3.ComenResp类代码 package com.jiawa.wiki.resp; public class CommonResp<T> { /** * 业务上的成功或失败 */ private boolean success = true; /** * 返回信息 */ 阅读全文
posted @ 2022-03-03 19:37 李林林 阅读(47) 评论(0) 推荐(0)
摘要:1.流程图 2.pom.xml中的文件 <!-- mybatis generator 自动生成代码插件 --> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</ 阅读全文
posted @ 2022-03-01 16:01 李林林 阅读(48) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-02-28 22:24 李林林 阅读(590) 评论(0) 推荐(0)
摘要:1.在pom.xml里添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency> 2.在IDEA中设置 3.按俩次s 阅读全文
posted @ 2022-02-28 21:41 李林林 阅读(43) 评论(0) 推荐(0)
摘要:1.执行顺序 2.关于bootstrap的配置文件 3.yaml格式转换的网站 toyaml.com/index.html 4.总结 SpringBoot会自动识别下面这组配置文件 application.properties/yml config/application.properties/ym 阅读全文
posted @ 2022-02-27 22:01 李林林 阅读(52) 评论(0) 推荐(0)
摘要:1.问题描述 2.解决方案 阅读全文
posted @ 2022-02-27 21:43 李林林 阅读(35) 评论(0) 推荐(0)
摘要:淘宝镜像 npm get registry --显示当前的镜像网址 npm config set registry http://registry.npm.taobao.org -- 使用淘宝的镜像网址 安装Vue CLI npm install -g @vue/cli@4.5.9 创建web应用 阅读全文
posted @ 2022-02-21 02:24 李林林 阅读(26) 评论(0) 推荐(0)
摘要:<?xml version="1.0" encoding="UTF-8"?> <configuration> <!-- 修改一下路径--> <property name="PATH" value="./log"></property> <appender name="STDOUT" class="c 阅读全文
posted @ 2022-02-21 01:16 李林林 阅读(92) 评论(0) 推荐(0)