Java
未读
Spring Boot 使用 spring-boot-devtools 实现热加载时出现类型转换异常
热加载问题 网上有给出了许多解决热加载的方法,比如: 在resource目录下创建META-INF/spring-devtools.properties文件 里面的内容为类似下面的内容: restart.exclude.companycommonlibs=/mycorp-common-[\\w-]+
Linux
未读
MongoDB后台运行
完成安装mongodb(略) 创建数据目录: mkdir /data/db 创建配置文件 # vi /data/db/mongodb.cnf
dbpath=/data/db/
logpath=/data/db/mongo.log
logappend=true
fork=true
port=27017
Linux
未读
Nginx防止被其他域名恶意解析
在nginx对应配置文件中增加以下配置: server {
listen 80 default_server;
listen 443 ssl default_server;
ssl_certificate 证书路径;
ssl_certificate_key 证书路径
Linux
未读
Elasticsearch安装常见问题
1. 提示:max file descriptors [4096] for elasticsearch process is too low max file descriptors [4096] for elasticsearch process is too low, increase to a
Java
未读
Maven在不同的环境获取不同配置文件的方法
最近准备把正在开发的项目给分为两个环境来部署,使用jenkins进行自动构建。 把maven部署多环境相关的资料看了下,都比较难理解,于是自己摸索,找到一个比较好的办法。 首先在 src/main/resource 下建两个文件夹,具体几个看你的环境有几个,我这里是分了两个,dev和product,
Linux
未读
Jenkins使用Git时提示 Unable to find remote helper for 'https' 报错的问题
一个新的项目需要部署生产环境,于是把jdk,maven,git,什么都装好了。 可是用jenkins连接git仓库的时候提示 Unable to find remote helper for 'https' 的问题。 因为对git的了解甚少,查了下资料,发现可能是没有安装curl的问题,于是先安装c