Skip to content

Commit 8bb35d0

Browse files
committed
Move ServletContextResourceFilePathResolver to servlet-specfic pkg
Closes gh-45333
1 parent 5709d55 commit 8bb35d0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.web.context;
17+
package org.springframework.boot.web.servlet.context;
1818

1919
import org.springframework.boot.io.ApplicationResourceLoader;
2020
import org.springframework.boot.io.ApplicationResourceLoader.FilePathResolver;

spring-boot-project/spring-boot/src/main/resources/META-INF/spring.factories

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,5 +109,5 @@ org.springframework.boot.io.Base64ProtocolResolver
109109
# Resource File Path Resolvers
110110
org.springframework.boot.io.ApplicationResourceLoader$FilePathResolver=\
111111
org.springframework.boot.io.ClassPathResourceFilePathResolver,\
112-
org.springframework.boot.web.context.ServletContextResourceFilePathResolver,\
113-
org.springframework.boot.web.reactive.context.FilteredReactiveWebContextResourceFilePathResolver
112+
org.springframework.boot.web.reactive.context.FilteredReactiveWebContextResourceFilePathResolver,\
113+
org.springframework.boot.web.servlet.context.ServletContextResourceFilePathResolver
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.web.context;
17+
package org.springframework.boot.web.servlet.context;
1818

1919
import java.io.File;
2020

0 commit comments

Comments
 (0)