搜虎博客 - 道德当身,故不已物惑

2018年11月

spring boot docker 报错UNC path is missing sharename

```bash Failed to execute goal com.spotify:docker-maven-plugin:0.2.3:build (default-cli) on pro...

logback 用appender接入阿里云日志

### 阿里云的日志系统比elk还是好用多了,而且支持像sql那样查询日志。接入方法如下 ```xml ​ ...

kafka 报错解决kafka.common.TopicExistsException: Topic "XXX" already exists.

### kafka 报错:kafka.common.TopicExistsException: Topic "XXX" already exists.怀疑是kafka和zookeeper不一致导...

chrome 针对.app域名,强制https

### chrome的hsts政策,针对.app域名,chrome强制使用https协议访问,比如: ```java http://hitube.app 会转换成 https://hi...

spring boot 升级到2.1.0 报错

### 昨天把spring boot升级到2.1.0版本,但是报错如下 ```java *************************** APPLICATION FAILED...

spring cloud gateway 全局filter,GlobalFilter

### spring cloud gateway中有gateway filter 和global filter,前者是针对路由规则配置到某个路由规则上,后者是全局的。定义一个全局filter的方...

Eureka 使用域名出现unavailable-replicas

### 最近碰到Eureka一个问题,就是多台Eureka部署集群时,会都出现在unavailable-replicas 下面。 ```bash unavailable-replic...

chrome 并未出现200 from cache 或者200 form memory cache

### 对css 设置了cache control和expires,但是打开chrome 的devtools ---->networks ,css request header出现如下: ...

nginx 设置css失效时间,缓存时间

### 发现站点得css过其时间比较短,然后打开nginx看了下,如下代码 ``` lua location ~ .*\.(js|css)?$ { ...

maven 指定远程仓库,maven找不到jar包

### 今天碰到个错误 “The POM for … is missing, no dependency information available” even though it exists...