上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 51 下一页
摘要: 1.配置文件 <?xml version="1.0" encoding="UTF-8"?> <!--日志级别以及优先级排序: OFF > FATAL > ERROR > WARN > INFO > DEBUG > TRACE > ALL --> <!--Configuration后面的status, 阅读全文
posted @ 2022-11-06 22:36 李林林 阅读(2624) 评论(0) 推荐(0) 编辑
摘要: 1.引入log4j2.xml(src/main/resources/log4j2.xml) <?xml version="1.0" encoding="UTF-8"?> <Configuration status="fatal"> <Properties> <!--放到服务器上value需要自己替换 阅读全文
posted @ 2022-11-06 22:15 李林林 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1.Linux压缩程序 gzip 2.tar打包与压缩 2.1 tar相关命令 阅读全文
posted @ 2022-11-05 23:38 李林林 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1.配置数据库application.properties spring.datasource.name=imooc_mall_datasource spring.datasource.url=jdbc:mysql://127.0.0.1:3306/imooc_mall?useUnicode=tru 阅读全文
posted @ 2022-11-05 23:13 李林林 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 1.整合Mybatis 1.1 在pom.xml中添加文件 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1. 阅读全文
posted @ 2022-11-05 22:52 李林林 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 1.引入依赖 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.1</version> </depende 阅读全文
posted @ 2022-11-05 18:00 李林林 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 1.种配置文件区分 2.格式转化的网站 3.使用(application.properties中编写) 3.1 配置端口号、项目名字、公共前缀 server.port=8081 spring.application.name=first-spring-boot server.servlet.cont 阅读全文
posted @ 2022-11-05 17:36 李林林 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 1.Get方式对参数的处理(@RequestParam) /** * 描述: 演示接口和传参 * //@RestController 表示返回时JSON格式不是页面 */ @RestController public class ParaController { /** * //@RequestPa 阅读全文
posted @ 2022-11-05 17:21 李林林 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 1.开发firstrequest接口 /** * 描述: 演示接口和传参 * //@RestController 表示返回时JSON格式不是页面 */ @RestController public class ParaController { @GetMapping("/firstrequest") 阅读全文
posted @ 2022-11-05 17:02 李林林 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1.常用文本工具 1.1 echo举列 1.1.1 向屏幕输出 1.1.2 单个大于号代表的是重写的意思,俩个大于号是追加的意思, 1.2 cat 查看文件内容 1.2.1 查看文件内容(可以增加 -n、E) 1.2.2 合并文件 (将hello.txt和myname.txt文件合并到full.tx 阅读全文
posted @ 2022-11-05 02:42 李林林 阅读(91) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 51 下一页