编程语言
首页 > 编程语言> > java – Spring boot和Thymeleaf – 再次热插拔模板和资源

java – Spring boot和Thymeleaf – 再次热插拔模板和资源

作者:互联网

我尝试了我在这里和文档中找到的所有提示和技巧,但仍然没有运气.我有Thymeleaf的Spring webapp.当我在IDEA中调用update时,不会重新加载资源和模板(它没有重新加载).然后,我可以像疯了一样在浏览器中按ctrl f5,更改不存在.

一切都在一个Java类中配置,如下所示:

@EnableWebMvc
public class MvcConfig extends WebMvcConfigurerAdapter implements ApplicationContextAware {

我的文件夹结构现在看起来像
this,但我也尝试将资源放在没有“静态”文件夹或webapp / resources的情况下.

ResourceHandlerRegistry:

@Override
public void addResourceHandlers(final ResourceHandlerRegistry registry) {
    super.addResourceHandlers(registry);
    registry.addResourceHandler("/img/**").addResourceLocations("classpath:/static/img/");
    registry.addResourceHandler("/css/**").addResourceLocations("classpath:/static/css/");
    registry.addResourceHandler("/js/**").addResourceLocations("classpath:/static/js/");
}

我在application.properties中指定了cache = false:

spring.thymeleaf.cache=false

并在提到的MvcConfig类中:

@Bean
public SpringResourceTemplateResolver templateResolver() {
    SpringResourceTemplateResolver templateResolver = new SpringResourceTemplateResolver();
    templateResolver.setApplicationContext(this.applicationContext);
    templateResolver.setPrefix("/WEB-INF/templates/");
    templateResolver.setSuffix(".html");
    templateResolver.setTemplateMode(TemplateMode.HTML);
    templateResolver.setCacheable(false);
    return templateResolver;
}

根据SO的一些答案我添加了对devtools的依赖:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <version>1.4.1.RELEASE</version>
    <optional>true</optional>
</dependency>

还是行不通.有人说用addResources = true添加maven启动插件,所以我做了:

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <version>1.4.1.RELEASE</version>
    <configuration>
        <addResources>true</addResources>
    </configuration>
</plugin>

我的想法设置正确,因为当我调用update时,我的Java类会立即重新加载.只有资源和html文件不是,我必须为它重新启动服务器. Actualy * .html文件并不是什么大不了的事,但是在每次小css和js更改之后重新启动服务器会让我失望很多,而且当我丢失了将近15个小时弄清楚什么是错误时,它开始真的很令人沮丧.

任何帮助将不胜感激.

解决方法:

我花了一些时间在这里,最后在这里我将解释我是如何工作的.
谷歌搜索你可能会找到几个信息:

> Spring Boot hot swap
> SO – Spring Boot + Jetty & hot deployment
> SO – Netbeans 8 won’t reload static Thymeleaf files

我的初衷是禁用缓存并添加Spring开发工具:

Spring启动application.properties

spring.thymeleaf.cache=false
spring.thymeleaf.mode=LEGACYHTML5
spring.thymeleaf.prefix=/templates/

的pom.xml

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <optional>true</optional>
    </dependency>

但是,使用上面的代码段是不够的,因为只有在制作项目时才进行热交换(在Intellij Idea中使用CTRL F9).这是因为默认模板解析器是基于类路径的,这就是需要重新编译的原因.

一个有效的解决方案是使用基于文件系统的解析器覆盖defaultTemplateResolver:

application.properties

spring.thymeleaf.cache=false
spring.thymeleaf.mode=LEGACYHTML5
spring.thymeleaf.templates_root=src/main/resources/templates/

应用类

@SpringBootApplication
public class MyApplication {

    @Autowired
    private ThymeleafProperties properties;

    @Value("${spring.thymeleaf.templates_root:}")
    private String templatesRoot;

    public static void main(String[] args) {
        SpringApplication.run(MyApplication.class, args);
    }

    @Bean
    public ITemplateResolver defaultTemplateResolver() {
        FileTemplateResolver resolver = new FileTemplateResolver();
        resolver.setSuffix(properties.getSuffix());
        resolver.setPrefix(templatesRoot);
        resolver.setTemplateMode(properties.getMode());
        resolver.setCacheable(properties.isCache());
        return resolver;
    }
}

我发现这个解决方案是最优的,因为它允许你外化配置并使用不同的配置文件(dev,prod等等),同时只需按下F5即可重新加载更改:)

标签:java,spring-boot,spring-mvc,thymeleaf,hotswap
来源: https://codeday.me/bug/20190724/1524266.html