Dolen

导航

上一页 1 2 3 4 5 6 ··· 8 下一页

2021年12月16日 #

修改mysql字符集

摘要: 1.查看当前数据库字符集: show VARIABLES like 'character%'; 2.修改数据库字符集: alter database ims character set utf8mb4; 3.修改表字符集: ALTER TABLE sys_test DEFAULT CHARACTER 阅读全文

posted @ 2021-12-16 10:48 Dolen 阅读(40) 评论(0) 推荐(0) 编辑

2021年12月15日 #

linux安装nodejs

摘要: 1.下载node.js cd /usr/local/soft wget https://nodejs.org/dist/v12.18.1/node-v12.18.1-linux-x64.tar.xz tar xf node-v12.18.1-linux-x64.tar.xz mv node-v12. 阅读全文

posted @ 2021-12-15 17:49 Dolen 阅读(31) 评论(0) 推荐(0) 编辑

2021年12月6日 #

linux 运行.sh出现 Permission denied

摘要: 执行.sh脚本时提示如下错误: [root@Dolen2021 redis]# ./startRedis.sh -bash: ./startRedis.sh: Permission denied [root@Dolen2021 redis]# chmod +x startRedis.sh [root 阅读全文

posted @ 2021-12-06 18:14 Dolen 阅读(664) 评论(0) 推荐(0) 编辑

2021年12月3日 #

springboot集成redis集群

摘要: 1.引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <gr 阅读全文

posted @ 2021-12-03 11:17 Dolen 阅读(876) 评论(0) 推荐(0) 编辑

2021年12月1日 #

阿里云搭建redis集群

摘要: 1、安装redis # 下载redis包 wget http://download.redis.io/releases/redis-5.0.5.tar.gz tar -zxvf redis-5.0.5 # 开始编译 make make test 通过上面执行完毕之后,在src目录下,会生成常见的操作 阅读全文

posted @ 2021-12-01 23:45 Dolen 阅读(415) 评论(0) 推荐(0) 编辑

springboot配置logback.xml

摘要: 由于springboot框架自带log4j,因此我们只需配置下logback文件,即可, 在main/resources根目录下,新建logback-spring.xml文件,copy下述代码: <?xml version="1.0" encoding="UTF-8"?> <configuratio 阅读全文

posted @ 2021-12-01 16:14 Dolen 阅读(1739) 评论(0) 推荐(0) 编辑

Springboot集成swagger2

摘要: 1.pom.xml添加dependency <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency> 阅读全文

posted @ 2021-12-01 00:02 Dolen 阅读(38) 评论(0) 推荐(0) 编辑

2021年11月30日 #

java导出excel单sheet超过65535数据报错拆分多sheet导出

摘要: java 导出 excel 阅读全文

posted @ 2021-11-30 09:52 Dolen 阅读(1335) 评论(0) 推荐(0) 编辑

2021年11月24日 #

linux firewall (marker)

摘要: 查看防火墙是否开启systemctl status firewalld 若没有开启则是开启状态systemctl start firewalld 关闭则start改为stop 查看所有开启的端口firewall-cmd --list-ports 注:启动防火墙后,默认没有开启任何端口,需要手动开启端 阅读全文

posted @ 2021-11-24 21:42 Dolen 阅读(27) 评论(0) 推荐(0) 编辑

2021年11月7日 #

Error Code: 1054. Unknown column '字段名' in 'field list'

摘要: 问题描述: j博主在java开发过程中,通过读取excel中表名和字段名,动态创建insert的SQL语句,在mysql可视化工具中执行此SQL语句时,一直提示“Error Code: 1054. Unknown column '字段名' in 'field list'。 明明数据库的表中,存在此字 阅读全文

posted @ 2021-11-07 23:16 Dolen 阅读(1846) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 8 下一页