05 2018 档案
springboot 启动报错 java.lang.IllegalStateException: Failed to introspect annotated methods on class org
摘要:解决方法: pom.xml中的 In maven, I changed the scope like this: <scope>provided</scope> to <scope>compile</scope> and it worked!!.
阅读全文
摘要:1.SpringCloud Eureka 报错 无法启动基本上都是spring boot的版本与spring cloud的版本不匹配导致的。 1 <dependencyManagement> 2 <dependencies> 3 <dependency> 4 <groupId>org.springf
阅读全文
摘要:原因查找: 此服务器上有写日志的操作,在写的同时我把要写入的文件删除了。。因为在写操作不能创建文件的时候会写硬盘的block,这样会使硬盘利用率越来越低,可以使用lsof -n |grep delete 来查看哪些进程在对磁盘进行写操作。 一般都是程序打开了已经删除的文件,导致磁盘未释放该文件。ls
阅读全文
摘要:java根据地址获取百度API经纬度(详细文档)
阅读全文
摘要:1️⃣.已获取小程序的access_token 为例,通过Get请求url 2️⃣.已获取小程序码为例,通过Post请求url 也可以参考https://www.cnblogs.com/bchange/p/9156178.html 1.先设置小程序码参数 2.对URL进行Post请求
阅读全文