Stephane Nicoll
e044817fe7
Migrate remaining use of ClassLoader.loadClass to Class.forName
...
Closes gh-19824
6 years ago
Stephane Nicoll
95be419527
Use Class.forName rather than ClassLoader.loadClass
...
This commit changes uses of ClassLoader.loadClass to Class.forName for
consistency with what was initiated in #19342 and better compatibility
with GraalVM.
Closes gh-19824
6 years ago
Phillip Webb
862462b791
Update copyright year of changed files
6 years ago
Andy Wilkinson
ce99db1902
Port the build to Gradle
...
Closes gh-19609
Closes gh-19608
6 years ago
Stephane Nicoll
2c1e81adf0
Polish
6 years ago
Madhura Bhave
8ec3ca74e1
Fix loading of devtools yaml files
...
Fixes gh-19081
6 years ago
Andy Wilkinson
847ec3c0e1
Add missing %s to warning message format string
...
Closes gh-18710
6 years ago
Phillip Webb
597baf9774
Polish "Optimize logger calls"
...
See gh-18710
6 years ago
wycm
240b1f9e29
Optimize logger calls
...
Guard logger calls to ensure that they are only made when the
level is set.
See gh-18710
6 years ago
dreis2211
8ecdf919f8
Fix Mockito deprecations
...
See gh-18689
6 years ago
Phillip Webb
714c9b9804
Polish
6 years ago
wycm
681a94b0d5
Optimize debug level logs
...
See gh-18604
6 years ago
Kant Leung
2f73e196af
Polish
...
See gh-18534
6 years ago
Andy Wilkinson
f42b442ce2
Fix handling of encoded URLs in Class-Path manifest attribute
...
Fixes gh-18410
6 years ago
Phillip Webb
795303d667
Replace depends-on post processor configurations
...
Replace `AbstractDependsOnBeanFactoryPostProcessor` `@Configuration`
classes with simple `@Import` component classes.
Closes gh-18382
6 years ago
Phillip Webb
1528b6c2f8
Polish
6 years ago
Phillip Webb
9568777d7d
Fix devtools package tangle
...
Fix package tangle in devtools by relocating `DevToolsEnablementDeducer`
to a new `system` package.
Closes gh-18393
6 years ago
Andy Wilkinson
35ad5cd011
Fix intermittent failure of inMemoryDerbyIsShutdown
6 years ago
Madhura Bhave
7978c3d75c
Polish
6 years ago
Madhura Bhave
48960c54d1
Drop . prefix from files in .config directory for devtools
...
Closes gh-18006
6 years ago
rajadilipkolli
abcff3a3b3
Use try-with-resources in HttpTunnelPayload
...
See gh-11779
6 years ago
Stephane Nicoll
9434cb0e22
Keep a live reference of protocol resolvers rather than copying them
...
This commit makes sure that any subsequent call on addProtocolResolver
on the context will impact the ResourceLoader implementation that
DevTools sets on the context.
This makes sure that any custom ProtocolResolver that is set later in
the lifecycle is taken into account.
Closes gh-17214
6 years ago
Andy Wilkinson
2e6f15b6f3
Fix intermittent failure of inMemoryDerbyIsShutdown
6 years ago
Andy Wilkinson
1b237de5f5
Use Awaitility in our own tests
...
Closes gh-18227
6 years ago
Phillip Webb
a0a204ae6a
Clarify devtools trigger file documentation
...
Closes gh-17775
6 years ago
dreis2211
b4350a9d96
Remove unnecessary blank lines
...
See gh-18089
6 years ago
Madhura Bhave
48b5b6a24c
Polish "Added support for devtools YAML configuration"
...
See gh-17915
6 years ago
HaiTao Zhang
00a3ad0fd1
Added support for devtools YAML configuration
...
See gh-17915
6 years ago
LiangYong
a5746d0a03
Simplify some code
...
See gh-17893
6 years ago
dreis2211
d4affd7f85
Use hasSize() assertion in favor of length checks
...
See gh-17874
6 years ago
Madhura Bhave
dab815af40
Simplify mockmvc security in tests following upstream changes
...
SecurityMockMvcConfigurer now honors filter order so we can use that instead
of manually adding the filter.
6 years ago
Madhura Bhave
09b690b3c9
Fix tests
6 years ago
Madhura Bhave
186530478c
Bypass Spring security authentication for remote devtools endpoint
...
Closes gh-17878
6 years ago
lijuny
b26f887a2e
Simplify some code
...
See gh-17852
6 years ago
周武栋
6fab5b591b
Simplify some code
...
See gh-17837
6 years ago
Phillip Webb
eff1147ccc
Rename classpath runner package
...
Remove `runner` since we're no longer tied to JUnit 4.
See gh-17491
7 years ago
Phillip Webb
1117fdb2b3
Make ModifiedClassPathExtension package private
...
Meta-annotate `ClassPathExclusions` and `ClassPathOverrides` with
so that the `ModifiedClassPathExtension` no longer needs to be
used directly.
See gh-17491
7 years ago
dreis2211
0f0278e69b
Migrate ModifiedClassPath tests to JUnit 5
...
Migrate the remaining JUnit 4 tests to JUnit 5, making use of the
new `ModifiedClassPathExtension`.
See gh-17491
7 years ago
Phillip Webb
01933f9b06
Merge previously split strings
...
Merge some string lines that were previously split because of the
90 chars wide formatting.
7 years ago
Phillip Webb
c3816bfe7b
Polish output capture names
7 years ago
Johnny Lim
426ef749db
Polish
...
See gh-17413
7 years ago
Andy Wilkinson
0d124e9857
Remove use of field injection from spring-boot-devtools
...
Closes gh-17442
7 years ago
Phillip Webb
a66c4d3096
Unify method visibility of private classes
...
Apply checkstyle rule to ensure that private and package private
classes do not have unnecessary public methods. Test classes have
also been unified as much as possible to use default scoped
inner-classes.
Closes gh-7316
7 years ago
Stephane Nicoll
e560b7f6ba
Remove public modifier on JUnit5 lifecycle methods
...
See gh-17292
7 years ago
Andy Wilkinson
cffc870fd6
Fix test failures on Windows
...
Since the move to JUnit 5, a number of tests were failing on Windows.
The majority were failing due to open file handles preventing the
clean up of the tests' temporary directory. This commit addresses
these failures by updating the tests to close JarFiles, InputStreams,
OutputStreams etc.
A change has also been made to CachingOperationInvokerTests to make
a flakey test more robust. Due to System.currentTimeMillis() being
less precise on Windows than it is on *nix platforms, the test could
fail as it would not sleep for long enough for the TTL period to have
expired.
7 years ago
Andy Wilkinson
7103eab2e6
Close JarFiles when looking for Class-Path manifest entries
...
Fixes gh-17095
7 years ago
Andy Wilkinson
95d0e26c35
Fix command DevTools uses to shut down in-memory Derby DB
...
Closes gh-17099
7 years ago
Phillip Webb
266d6334b2
Fix checkstyle RedundantModifier test violations
7 years ago
Andy Wilkinson
b18fffaf14
Move tests to JUnit 5 wherever possible
7 years ago
Stephane Nicoll
f30e29a4ad
Rename spring.reactor.stacktrace-mode.enabled property
...
Closes gh-16537
7 years ago