解决一个maven的site命令报错问题

新建的 mavenSpring Boot 项目一致保存 org.apache.maven.doxia.siterenderer.DocumentContent not found

升级 Spring Boot 也没用,最终修改插件依赖解决。

<!-- site -->
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-site-plugin</artifactId>
    <version>3.7</version>
    <dependencies>
        <dependency>
            <groupId>org.apache.maven.doxia</groupId>
            <artifactId>doxia-site-renderer</artifactId>
            <version>1.8</version>
        </dependency>
    </dependencies>
</plugin>

Terwer...小于 1 分钟实用技巧经验分享mvnsiteerror
分布式系统设计策略之容错性

容错性

容错就是IT系统对错误的包容能力。

容错处理保障了分布式系统环境下相应系统高可用和健壮性。

常见的案例是对于 缓存穿透 问题的解决方案。

image-20220411211453419
image-20220411211453419

Terwer...小于 1 分钟后端开发分布式errortolerant
关于Springboot配置thymeleaf的404问题

问题

我的yaml配置

server:
  port: 8080
resources:
  static-locations:
    - classpath:/static/
spring:
  thymeleaf:
    cache: false
    checktemplatelocation: true
    enabled: true
    encoding: UTF-8
    mode: HTML
    prefix: classpath:/templates/
    suffix: .html

Terwer...小于 1 分钟经验分享实用技巧error404springbootthymeleaf