
java
文章平均质量分 62
卑微马垅
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
centos7安装nginx
1.在nginx.org里的下载里安装最新版的nginx 2.通过FileZilla上传到服务器 3.安装依赖环境 yum install gcc-c++ yum install -y pcre pcre-devel yum install -y zlib zlib-devel yum install -y openssl openssl-devel 4.解压nginx tar -xvf nginx-1.16.1.tar.gz(你自己的nginx名字) 5....原创 2021-07-11 18:33:09 · 171 阅读 · 0 评论 -
spring boot 2.0 提示 No primary or default constructor found for interface Pageable 解决办法
出现该问题的真正原因如下: 1. 如果要配置WebMvcConfigurationSupport那么就不要添加@EnableSpringDataWebSupport 2. 如果要使用@EnableSpringDataWebSupport那么配置文件就不应该继承WebMvcConfigurationSupport,可以通过实现WebMvcConfigurer接口来达到同样目的 这个问题只需要取消继承WebMvcConfigurationSupport,添加@EnableSpringDataWebSupport原创 2020-05-21 21:28:32 · 4496 阅读 · 0 评论 -
redis分布式锁实现 java
代码 public class RedisLock { @Autowired private StringRedisTemplate redisTemplate; /** * 加锁 * @param key * @param value 当前时间+超时时间 * 123456 11 * ...原创 2019-11-17 16:40:00 · 339 阅读 · 0 评论 -
用压测模拟并发
使用简易工具 Apache ab ab -n 100 -c 100 http://www.baidu.com/ ab -t 60 -c 100http://www.baidu.com/ 官方文档:http://httpd.apache.org/docs/current/programs/ab.html Linux 安装 ab 命令 yum -y install httpd-to...原创 2019-11-08 15:05:26 · 334 阅读 · 0 评论