You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/WebFluxProperties.java
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2012-2023 the original author or authors.
2
+
* Copyright 2012-2024 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -99,17 +99,20 @@ public void setWebjarsPathPattern(String webjarsPathPattern) {
99
99
publicstaticclassFormat {
100
100
101
101
/**
102
-
* Date format to use, for example 'dd/MM/yyyy'.
102
+
* Date format to use, for example 'dd/MM/yyyy'. Used for formatting of
103
+
* java.util.Date and java.time.LocalDate.
103
104
*/
104
105
privateStringdate;
105
106
106
107
/**
107
-
* Time format to use, for example 'HH:mm:ss'.
108
+
* Time format to use, for example 'HH:mm:ss'. Used for formatting of java.time's
109
+
* LocalTime and OffsetTime.
108
110
*/
109
111
privateStringtime;
110
112
111
113
/**
112
-
* Date-time format to use, for example 'yyyy-MM-dd HH:mm:ss'.
114
+
* Date-time format to use, for example 'yyyy-MM-dd HH:mm:ss'. Used for formatting
115
+
* of java.time's LocalDateTime, OffsetDateTime, and ZonedDateTime.
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties.java
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2012-2023 the original author or authors.
2
+
* Copyright 2012-2024 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -385,17 +385,20 @@ public void setMatchingStrategy(MatchingStrategy matchingStrategy) {
385
385
publicstaticclassFormat {
386
386
387
387
/**
388
-
* Date format to use, for example 'dd/MM/yyyy'.
388
+
* Date format to use, for example 'dd/MM/yyyy'. Used for formatting of
389
+
* java.util.Date and java.time.LocalDate.
389
390
*/
390
391
privateStringdate;
391
392
392
393
/**
393
-
* Time format to use, for example 'HH:mm:ss'.
394
+
* Time format to use, for example 'HH:mm:ss'. Used for formatting of java.time's
395
+
* LocalTime and OffsetTime.
394
396
*/
395
397
privateStringtime;
396
398
397
399
/**
398
-
* Date-time format to use, for example 'yyyy-MM-dd HH:mm:ss'.
400
+
* Date-time format to use, for example 'yyyy-MM-dd HH:mm:ss'. Used for formatting
401
+
* of java.time's LocalDateTime, OffsetDateTime, and ZonedDateTime.
0 commit comments