摘要: ①在POM文件中添加相关引用 <!-- actuator监控信息完善 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> 阅读全文
posted @ 2020-03-01 22:31 flycatony 阅读(2266) 评论(0) 推荐(1) 编辑
摘要: ①进入项目文件夹 ②右键选择git bash here ③在cmd窗口输入命令: find . -name ".git" | xargs rm -Rf 即可 阅读全文
posted @ 2020-02-29 19:49 flycatony 阅读(4524) 评论(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. ^^^# # # COR 阅读全文
posted @ 2020-02-28 17:05 flycatony 阅读(324) 评论(0) 推荐(0) 编辑
摘要: flutter插件官网地址:https://pub.dartlang.org/packages/ 1. image_picker 一个可以从图库选择图片,并可以用相机拍摄新照片的flutter插件 2. flutter_image 使用NetworkImageWithRetry 代替Image.ne 阅读全文
posted @ 2020-02-27 20:45 flycatony 阅读(2028) 评论(0) 推荐(0) 编辑
摘要: 从即日起开始学习SpringCloud,在这里记录下学习过程,共勉,欢迎指正。环境:IDEA2019.3.3、JAVA13一、spring cloud简介spring cloud 为开发人员提供了快速构建分布式系统的一些工具,包括配置管理、服务发现、断路器、路由、微代理、事件总线、全局锁、决策竞选、分布式会话等等。它运行环境简单,可以在开发人员的电脑上跑。另外说明spring cloud是基于sp... 阅读全文
posted @ 2020-02-26 16:18 flycatony 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 记录一下入手Flutter后实际开发中踩过的一些坑,这些坑希望后来者踩的越少越好。本文章默认读者已经掌握Flutter初步开发基础。 坑1问题:在debug模式下,App启动第一个页面会很慢,甚至是黑屏。解决:请切换到release模式,或者使用flutter build apk 打出来的relea 阅读全文
posted @ 2020-02-25 16:51 flycatony 阅读(783) 评论(0) 推荐(0) 编辑
摘要: 环境: ①IDEA2019.3.3 ②JAVA12 ③Android-SDK29.0.3 ④Flutter1.14.6 ⑤WINDOWS10.0.18363.657 ⑥AL10实体机,Android8 问题一:Manager AVDt升级提示 解决办法:JAVA由12调整为8 问题二:Some An 阅读全文
posted @ 2020-02-25 16:45 flycatony 阅读(2195) 评论(0) 推荐(0) 编辑
摘要: @Configuration@Slf4j@PropertySource({"classpath:/config.properties"})public class MyWebAppConfigurer extends WebMvcConfigurerAdapter {},这里 WebMvcConfi 阅读全文
posted @ 2020-02-24 17:11 flycatony 阅读(3882) 评论(0) 推荐(0) 编辑
摘要: import org.springframework.boot.autoconfigure.web.DefaultErrorAttributes→org.springframework.boot.web.servlet.error.DefaultErrorAttributes import org. 阅读全文
posted @ 2020-02-24 16:58 flycatony 阅读(2032) 评论(0) 推荐(0) 编辑
摘要: 更换成新包即可import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; 阅读全文
posted @ 2020-02-24 16:53 flycatony 阅读(2457) 评论(0) 推荐(0) 编辑