摘要: springboot项目构建demo @EnableDiscoveryClient@EnableResourceServer@SpringBootApplicationpublic class MerchantApplication { public static void main(String[ 阅读全文
posted @ 2018-09-05 17:38 全栈冲鸭! 阅读(186) 评论(0) 推荐(0) 编辑
摘要: Spring Cloud Config服务器 服务器为外部配置(名称值对或等效的YAML内容)提供了基于资源的HTTP。服务器可以使用@EnableConfigServer注释轻松嵌入到Spring Boot应用程序中。所以这个应用程序是一个配置服务器: ConfigServer.java @Spr 阅读全文
posted @ 2018-09-05 17:37 全栈冲鸭! 阅读(219) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/ae3ed5ce04ce 地址 阅读全文
posted @ 2018-09-05 17:24 全栈冲鸭! 阅读(87) 评论(0) 推荐(0) 编辑
摘要: https://licensez.com/ 感觉都是最新的 哈哈哈 http://idea.lanyus.com/ https://blog.csdn.net/qq_40683441/article/details/81449829?utm_source=blogxgwz1 阅读全文
posted @ 2018-09-05 17:23 全栈冲鸭! 阅读(92) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/dmcl/p/7152711.html 使用 UEDITOR 今天介绍一下 vue-quill-editor富文本编辑器 一、npm 安装 vue-quill-editor 二、在main.js中引入 三、在模块中引用 阅读全文
posted @ 2018-07-25 16:59 全栈冲鸭! 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 解决方式:安装 "babel-polyfill" 即可。 命令:cnpm install --save-dev babel-polyfill //我用的是淘宝镜像,所以是cnpm,如果你没有安装使用npm 即可。 在入口main.js文件引入:import 'babel-polyfill' 最后一步 阅读全文
posted @ 2018-07-25 16:49 全栈冲鸭! 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 在项目的根目录的package.json文件中"dev": "webpack-dev-server --content-base ./ --open --inline --hot--compress --history-api-fallback --config build/webpack.dev. 阅读全文
posted @ 2018-07-23 16:55 全栈冲鸭! 阅读(1659) 评论(0) 推荐(1) 编辑
摘要: mysql查询当天的所有信息: select * from test where year(regdate)=year(now()) and month(regdate)=month(now()) and day(regdate)=day(now())这个有一些繁琐,还有简单的写法: select 阅读全文
posted @ 2018-04-09 11:14 全栈冲鸭! 阅读(300) 评论(0) 推荐(0) 编辑