摘要: https://blog.csdn.net/weixin_42244235/article/details/82391810 阅读全文
posted @ 2019-03-06 01:17 fight-ing 阅读(1132) 评论(0) 推荐(0) 编辑
摘要: python 3.7.2 安装 pycurl,一直报如下错误: Requirement 'D:\\pycurl‑7.43.1‑cp37‑cp37m‑win_amd64.whl' looks like a filename, but the file does not existpycurl‑7.43 阅读全文
posted @ 2018-12-31 12:37 fight-ing 阅读(5120) 评论(0) 推荐(0) 编辑
摘要: 初学python,编写 tornado 上边的文件目录,文件名刚好也是tornado,通过度娘得到解决。 解决方法:将 文件名改成 非tornado 即可。 参考:https://bbs.csdn.net/topics/390875535 阅读全文
posted @ 2018-12-31 12:06 fight-ing 阅读(4128) 评论(1) 推荐(0) 编辑
摘要: 最近在学习springBoot时,其中有很大的一个核心的只是点:自动配置。 通过 DataSourceAutoConfiguration 学习 自动配置是如何实现的。 自动配置中比较重要的一个点就是 条件化配置? 1、条件化配置 JdbcTemplateCondition 的定义 如何 JdbcTe 阅读全文
posted @ 2018-10-01 18:48 fight-ing 阅读(16851) 评论(0) 推荐(0) 编辑
摘要: 由于自己使用 Mac,所以,以下讲解也是已mac为例。 1、首先到Spring官方镜像仓库中下载jar包: https://repo.spring.io/release/org/springframework/boot/spring-boot-cli/1.3.0.RELEASE/(可能需要科学上网) 阅读全文
posted @ 2018-10-01 15:27 fight-ing 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 1、添加环境变量 打开终端,输入 open .bash_profile 然后,你会看到如下: 然后,编辑文本,export PATH="你要添加的路径" 最后在执行:source ~/.bash_profile 阅读全文
posted @ 2018-10-01 15:11 fight-ing 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 1、Spring Boot 有那些核心内容: 1)自动配置 2)起步依赖 3)命令行界面 4)Actuator 2、Spring Boot 如何实现应用程序上下文的自动配置 1)Spring4 的条件化配置特性 2)Maven或者Gradle的传递依赖解析特性 3、Spring Boot项目 和 S 阅读全文
posted @ 2018-10-01 12:42 fight-ing 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 首先,看知乎上的回答: https://www.zhihu.com/question/20702054 廖雪峰-python教程 https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000 p 阅读全文
posted @ 2018-09-27 00:18 fight-ing 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 问题描述 @DubboProvider 是 自定义注解。其定义如下: 看了上边的一堆东西,你估计不太了解这个东西,上边这一堆东西,到底是啥?个人理解拆分为3块 1) @Target、@Retention、@Documented 注解 这三个是 java 中的元注解,看java中的定义如下: 以上四个 阅读全文
posted @ 2018-09-26 01:15 fight-ing 阅读(536) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/sd19871122/article/details/79398048 重写前: 重写后: 上边的重写,主要用到了两个知识点: 1、lombok(不了解的童鞋,自动百度) 2、就是数据初始化的写法 阅读全文
posted @ 2018-09-17 23:35 fight-ing 阅读(155) 评论(0) 推荐(0) 编辑
Fork me on GitHub