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
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -363,17 +363,20 @@ public void setMatchingStrategy(MatchingStrategy matchingStrategy) {
363
363
publicstaticclassFormat {
364
364
365
365
/**
366
-
* Date format to use, for example 'dd/MM/yyyy'.
366
+
* Date format to use, for example 'dd/MM/yyyy'. Used for formatting of
367
+
* java.util.Date and java.time.LocalDate.
367
368
*/
368
369
privateStringdate;
369
370
370
371
/**
371
-
* Time format to use, for example 'HH:mm:ss'.
372
+
* Time format to use, for example 'HH:mm:ss'. Used for formatting of java.time's
373
+
* LocalTime and OffsetTime.
372
374
*/
373
375
privateStringtime;
374
376
375
377
/**
376
-
* Date-time format to use, for example 'yyyy-MM-dd HH:mm:ss'.
378
+
* Date-time format to use, for example 'yyyy-MM-dd HH:mm:ss'. Used for formatting
379
+
* of java.time's LocalDateTime, OffsetDateTime, and ZonedDateTime.
0 commit comments