Spring Boot (v2+) starter for autoconfiguring Pebble as an MVC ViewResolver.
Add the starter dependency to your pom.xml:
<dependency>
<groupId>com.mitchellbosecke</groupId>
<artifactId>pebble-spring-boot-2-starter</artifactId>
<version>${version}</version>
</dependency>
Or build.gradle:
compile "com.mitchellbosecke:pebble-spring-boot-2-starter:$version"
This is enough for autoconfiguration to kick in. This includes:
- a Loader that will pick template files ending in
.pebble
from/templates/
dir on the classpath - a PebbleEngine with default settings, configured with the previous loader
- a ViewResolver that will output
text/html
inUTF-8
PLEASE NOTE: the starter depends on spring-boot-starter-web
but is marked as optional, you'll need to add the dependency yourself or configure Spring MVC appropiately.
Pebble vs tested Boot versions (may work on older Boot releases).
Pebble Boot Starter | Version | Spring Boot Version |
---|---|---|
pebble-spring-boot-starter | 2.2.0+ | 1.2.1+ |
pebble-spring-boot-2-starter | 2.4.1+ | 2.0.0.RC2+ |
A number of properties can be defined in Spring Boot externalized configuration, eg. application.properties
, starting with the prefix pebble
. See the corresponding PebbleProperties.java for your starter version. Notable properties are:
pebble.prefix
: defines the prefix that will be prepended to the mvc view name. Defaults to/templates/
pebble.suffix
: defines the suffix that will be appended to the mvc view name. Defaults to.pebble
pebble.cache
: enables or disables PebbleEngine caches. Defaults totrue
pebble.contentType
: defines the content type that will be used to configure the ViewResolver. Defaults totext/html
pebble.encoding
: defines the text encoding that will be used to configure the ViewResolver. Defaults toUTF-8
pebble.exposeRequestAttributes
: defines whether all request attributes should be added to the model prior to merging with the template for the ViewResolver. Defaults tofalse
pebble.exposeSessionAttributes
: defines whether all session attributes should be added to the model prior to merging with the template for the ViewResolver. Defaults tofalse
pebble.defaultLocale
: defines the default locale that will be used to configure the PebbleEngine. Defaults tonull
pebble.strictVariables
: enable or disable the strict variable checking in the PebbleEngine. Defaults tofalse
Extensions defined as beans will be picked up and added to the PebbleEngine automatically:
@Bean
public Extension myPebbleExtension1() {
return new MyPebbleExtension1();
}
@Bean
public Extension myPebbleExtension2() {
return new MyPebbleExtension2();
}
CAVEAT: Spring will not gather all the beans if they're scattered across multiple @Configuration classes. If you use this mechanism, bundle all Extension @Beans in a single @Configuration class.
The autoconfigurer looks for a bean named pebbleLoader
in the context. You can define a custom loader with that name and it will be used to configure the default PebbleEngine:
@Bean
public Loader<?> pebbleLoader() {
return new MyCustomLoader();
}
PLEASE NOTE: this loader's prefix and suffix will be both overwritten when the ViewResolver is configured. You should use the externalized configuration for changing these properties.
Likewise, you can build a custom engine and make it the default by using the bean name pebbleEngine
:
@Bean
public PebbleEngine pebbleEngine() {
return new PebbleEngine.Builder().build();
}
And the same goes for the ViewResolver, using the bean name pebbleViewResolver
:
@Bean
public PebbleViewResolver pebbleViewResolver() {
return new PebbleViewResolver();
}
PLEASE NOTE: you need to change the Loader's prefix and suffix to match the custom ViewResolver's values.
The main role of this starter is to configure Pebble for generating MVC View results (the typical HTML). You may define more PebbleEngine/Loader beans for other usage patterns (like generating email bodies). Bear in mind that you should not reuse the default Loader for other Engine instances.