-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add spring properties bean for properties.
- Loading branch information
1 parent
317ff2c
commit ff2b8e5
Showing
4 changed files
with
38 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/java/de/otto/esidialect/EsiDialectProperties.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package de.otto.esidialect; | ||
|
||
import org.springframework.boot.context.properties.ConfigurationProperties; | ||
|
||
@ConfigurationProperties(prefix = "esiinclude-thymeleaf-dialect") | ||
public class EsiDialectProperties { | ||
|
||
private String prefixForRelativePath; | ||
|
||
/** | ||
* Optional prefix for relative esi:include paths | ||
* @return prefix for relative esi:include paths or null if not set | ||
*/ | ||
public String getPrefixForRelativePath() { | ||
return prefixForRelativePath; | ||
} | ||
|
||
public void setPrefixForRelativePath(String prefixForRelativePath) { | ||
this.prefixForRelativePath = prefixForRelativePath; | ||
} | ||
} |