Li Qiang

Results 2 comments of Li Qiang

Got the same issue in iOS with version 2.6.1. I think it's caused by the delayed clean up code on ripple animation. ```setTimeout((function(){var e=t.getElementsByClassName("v-ripple__animation");1===e.length&&t.dataset.previousPosition&&(t.style.position=t.dataset.previousPosition,delete t.dataset.previousPosition),n.parentNode&&t.removeChild(n.parentNode)}),300)```

spring.config.import 在 spring boot 的启动过程中,触发的很早,另外 bootstrap.properties / yaml 被取消了,所以导致 以原有方式设置的 spring.cloud.nacos.x.x 相关值拿不到。这是出现问题的主要原因。所以只要让这些设置发生在 spring.config.import 之前,问题就可以解决。 两个思路: 1. 把这下配置直接放在 spring.config.import 所在的 properties 文件里; 2. 自己定制一个 GenericApplicationListener,在 ApplicationEnvironmentPreparedEvent 事件里,把这些设置加载到 Environment 里就可以解决问题。