Only template resolvers and dialects are added automatically. There should be a line in code to add link builders as well: https://github.com/spring-projects/spring-boot/blob/master/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafAutoConfiguration.java#L145 Something like `linkBuilders.orderedStream().forEach(engine::addLinkBuilder);`.
Only template resolvers and dialects are added automatically. There should be a line in code to add link builders as well: https://github.com/spring-projects/spring-boot/blob/master/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafAutoConfiguration.java#L145
Something like
linkBuilders.orderedStream().forEach(engine::addLinkBuilder);.