会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
wujf
动力缘于追求!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
···
24
下一页
2021年5月26日
Mybatis Plus整合PageHelper分页的实现示例
摘要: 1、依赖引入 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.3</version> <exclusi
阅读全文
posted @ 2021-05-26 17:56 wujf
阅读(3176)
评论(0)
推荐(0)
2021年5月20日
关于xlrd最新版本不支持.xlsx文件的解决办法
摘要: #卸载已安装的 pip uninstall xlrd #下载对应的版本 pip install xlrd==1.2.0 #卸载已安装的pip uninstall xlrd #下载对应的版本pip install xlrd==1.2.0
阅读全文
posted @ 2021-05-20 20:22 wujf
阅读(7175)
评论(0)
推荐(0)
2021年4月18日
mysql 错误解决大法 Specified key was too long; max key length is 767 bytes
摘要: 高版本mysql向低版本(5.7以下)导入sql时可能会发生此问题 开启索引最大长度 SET GLOBAL INNODB_LARGE_PREFIX = ON; 将表改为动态表SET GLOBAL innodb_file_format = BARRACUDA; 设值表的行记录格式为Dynamic 创建
阅读全文
posted @ 2021-04-18 14:06 wujf
阅读(727)
评论(0)
推荐(0)
2021年4月1日
php连接redis
摘要: //连接本地的 Redis 服务 $redis = new \Redis(); $redis->connect('127.0.0.1', 6379); $auth = $redis->auth('111'); $redis->select(1); $redis->set("tutorial-name
阅读全文
posted @ 2021-04-01 09:30 wujf
阅读(196)
评论(0)
推荐(0)
2020年12月22日
flex实现圣杯布局
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> *{ margin:0;padding:0; } .container{ display: flex; hei
阅读全文
posted @ 2020-12-22 09:55 wujf
阅读(158)
评论(0)
推荐(0)
负边距实现圣杯布局
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .left, .middle, .right { position: rela
阅读全文
posted @ 2020-12-22 09:54 wujf
阅读(76)
评论(0)
推荐(0)
2020年12月18日
php 虚拟目录
摘要: 问题: 站点的root目录为 /data/web/ ,现在想在www.111.com 下放一个站点,www.111.com/abc/ 但不能直接在/data/web/下创建abc目录,要放在 /data1/abc/下。 解决办法: 使用nginx的alias功能实现虚拟目录 在配置文件中加入 loc
阅读全文
posted @ 2020-12-18 17:03 wujf
阅读(214)
评论(0)
推荐(0)
2020年10月14日
prometheus+grafana监控体验
摘要: 先上pom依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <gro
阅读全文
posted @ 2020-10-14 10:49 wujf
阅读(281)
评论(0)
推荐(0)
2020年9月30日
一个通用的 java 项目的模板
摘要: #!groovy def oper_checkout(SCM_TYPE,SCM_URL,SCM_AUTH_PASS,SCM_BRANCH=' ',SCM_AUTH_USER=' '){ if (SCM_TYPE =='git') { return checkout([$class: "GitSCM"
阅读全文
posted @ 2020-09-30 16:51 wujf
阅读(829)
评论(0)
推荐(0)
2020年9月28日
springboot集成ElasticApm
摘要: jvm参数方式: -javaagent:D:/codesoft/elastic-apm-agent-1.18.0.jar -Delastic.apm.service_name=my-application -Delastic.apm.server_urls=http://localhost:8200
阅读全文
posted @ 2020-09-28 11:36 wujf
阅读(1583)
评论(0)
推荐(0)
上一页
1
···
5
6
7
8
9
10
11
12
13
···
24
下一页
公告