Fork me on GitHub
摘要: 阅读全文
posted @ 2018-01-26 20:15 北斗2016 阅读(196) 评论(0) 推荐(0) 编辑
摘要: # # COMMON SPRING BOOT PROPERTIES # # This sample file is provided as a guideline. Do NOT copy it in its # entirety to your own application. ^^^ # # # 阅读全文
posted @ 2018-01-17 22:31 北斗2016 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 1 启动报错 2 初步诊断是slf4j 包冲突了,项目根目录运行 gradle dependencyInsight --dependency slf4j-api 3. 修改build.gradle 文件 4.启动成功。 阅读全文
posted @ 2018-01-17 00:08 北斗2016 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 有时候为了能理解JVM对程序所做的优化等,需要查看程序的字节码,因此知道了解一些常见的指令集很重要! 指令码 助记符 说明 0x00 nop 什么都不做 0x01 aconst_null 将null推送至栈顶 0x02 iconst_m1 将int型-1推送至栈顶 0x03 iconst_0 将in 阅读全文
posted @ 2018-01-14 10:06 北斗2016 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 虚拟机上装了redis, 本地Windows的RedisDesktopManager connect failed。 解决方法: 1.修改 redis.conf 文件 bind 127.0.0.1 注释掉 requirepass 123456 设置密码 2.linux 对外开放6379端口 阅读全文
posted @ 2017-12-29 01:12 北斗2016 阅读(1394) 评论(0) 推荐(0) 编辑
摘要: https://my.oschina.net/flashsword/blog/180623 重点 SeleniumDownloader 对于一些Javascript动态加载的网页,仅仅使用http模拟下载工具,并不能取到页面的内容。这方面的思路有两种:一种是抽丝剥茧,分析js的逻辑,再用爬虫去重现它 阅读全文
posted @ 2017-12-25 22:28 北斗2016 阅读(517) 评论(0) 推荐(0) 编辑
摘要: mvn install:install-file -Dfile=jar绝对路径 -DgroupId=项目组织唯一的标识符 -DartifactId=项目的唯一的标识符 -Dversion=jar版本 -Dpackaging=jar mvn install:install-file -Dfile=E: 阅读全文
posted @ 2017-12-25 14:27 北斗2016 阅读(315) 评论(0) 推荐(0) 编辑
摘要: netstat -nao | findstr 1099taskkill -f -pid 3756 阅读全文
posted @ 2017-12-22 17:04 北斗2016 阅读(160) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/qq_16216221/article/details/71600535 阅读全文
posted @ 2017-12-22 17:03 北斗2016 阅读(132) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/pange1991/article/details/53860651 阅读全文
posted @ 2017-12-22 17:02 北斗2016 阅读(162) 评论(0) 推荐(0) 编辑