Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
f24b55a2
Commit
f24b55a2
authored
May 12, 2017
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to Thymeleaf 3.0.6.RELEASE
Closes gh-9207
parent
ce3aa1d4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
ThymeleafReactiveAutoConfigurationTests.java
...re/thymeleaf/ThymeleafReactiveAutoConfigurationTests.java
+1
-1
ThymeleafServletAutoConfigurationTests.java
...ure/thymeleaf/ThymeleafServletAutoConfigurationTests.java
+2
-2
template.html
...-autoconfigure/src/test/resources/templates/template.html
+0
-0
pom.xml
spring-boot-dependencies/pom.xml
+1
-1
No files found.
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafReactiveAutoConfigurationTests.java
View file @
f24b55a2
...
...
@@ -68,7 +68,7 @@ public class ThymeleafReactiveAutoConfigurationTests {
@Test
public
void
createFromConfigClass
()
throws
Exception
{
load
(
BaseConfiguration
.
class
,
"spring.thymeleaf.suffix:.
txt
"
);
load
(
BaseConfiguration
.
class
,
"spring.thymeleaf.suffix:.
html
"
);
TemplateEngine
engine
=
this
.
context
.
getBean
(
TemplateEngine
.
class
);
Context
attrs
=
new
Context
(
Locale
.
UK
,
Collections
.
singletonMap
(
"foo"
,
"bar"
));
String
result
=
engine
.
process
(
"template"
,
attrs
);
...
...
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafServletAutoConfigurationTests.java
View file @
f24b55a2
...
...
@@ -76,11 +76,11 @@ public class ThymeleafServletAutoConfigurationTests {
@Test
public
void
createFromConfigClass
()
throws
Exception
{
load
(
BaseConfiguration
.
class
,
"spring.thymeleaf.mode:
X
HTML"
,
load
(
BaseConfiguration
.
class
,
"spring.thymeleaf.mode:HTML"
,
"spring.thymeleaf.suffix:"
);
TemplateEngine
engine
=
this
.
context
.
getBean
(
TemplateEngine
.
class
);
Context
attrs
=
new
Context
(
Locale
.
UK
,
Collections
.
singletonMap
(
"foo"
,
"bar"
));
String
result
=
engine
.
process
(
"template.
txt
"
,
attrs
);
String
result
=
engine
.
process
(
"template.
html
"
,
attrs
);
assertThat
(
result
).
isEqualTo
(
"<html>bar</html>"
);
}
...
...
spring-boot-autoconfigure/src/test/resources/templates/template.
txt
→
spring-boot-autoconfigure/src/test/resources/templates/template.
html
View file @
f24b55a2
File moved
spring-boot-dependencies/pom.xml
View file @
f24b55a2
...
...
@@ -177,7 +177,7 @@
<sqlite-jdbc.version>
3.16.1
</sqlite-jdbc.version>
<statsd-client.version>
3.1.0
</statsd-client.version>
<sun-mail.version>
${javax-mail.version}
</sun-mail.version>
<thymeleaf.version>
3.0.
5
.RELEASE
</thymeleaf.version>
<thymeleaf.version>
3.0.
6
.RELEASE
</thymeleaf.version>
<thymeleaf-spring5.version>
3.0.5.M3
</thymeleaf-spring5.version>
<thymeleaf-extras-springsecurity4.version>
3.0.2.RELEASE
</thymeleaf-extras-springsecurity4.version>
<thymeleaf-layout-dialect.version>
2.2.1
</thymeleaf-layout-dialect.version>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment