Commit Graph

13776 Commits (377e4f3156075735854baf1ffb0cd73a978785cd)
 

Author SHA1 Message Date
Andy Wilkinson 082258952a Fall back to JVM's class path when finding jars with static resources
Previously, StaticResourceJars would only find jars with
META-INF/resources content if it had been loaded by a URLClassLoader.
This is not the case on Java 9 and, as a result, static content in
META-INF/resources of any jars on the class path was not found.

This commit updates StaticResourceJars to fall back to using the
JVM's class path to find static resource jars when it was loaded by
a ClassLoader that is not a URLClassLoader.

Closes gh-10455
7 years ago
Andy Wilkinson ce77f48c3f Fall back to JVM's class path when TCCL is not a URLClassLoader
Previously, DevTools assumed that the TCCL was a URLClassLoader
when trying to determine the URLs that it should examine to determine
the locations that should be watched for triggering a restart. This
fails on Java 9 as the TCCL is not a URLClassLoader.

This commit updates the logic that determines the changeable URLs to
fall back to examining the JVM's class path when the TCCL is not a
URLClassLoader, typically because the application is running on Java
9. This fall back isn't a direct equivalent of the behaviour on Java 8
as the class path of the TCCL and the class path with which the JVM
was launched may not be the same. However, I consider the fix to be
reasonable for two reasons:

1. In reality, the class path of the TCCL and the class path with
   which the JVM was launched are the same.
2. There appears to be now to get the URLs on the class path of the
   TCCL on Java 9. There is a URLClassPath field, however Java 9's
   access restrictions prevent us from using it even if we resort to
   reflection.

Closes gh-10454
7 years ago
Andy Wilkinson b152b98f84 Improve diagnostics in DevTools integration tests
See gh-10454
7 years ago
Andy Wilkinson 5cf48a29a5 Merge branch '1.5.x' 7 years ago
Andy Wilkinson f01bb8e175 Polish 7 years ago
Andy Wilkinson b6a0d67332 Merge branch '1.5.x' 7 years ago
Andy Wilkinson c27d678b81 Improve handling of absolute URLs in Class-Path manifest attribute
Closes gh-10268
7 years ago
Stephane Nicoll 75dbe5c2de Include java.xml.ws module when running on Java 9
See gh-7226
7 years ago
Stephane Nicoll 5ba2906045 Disable JSP sample tests on Java 9
See gh-10456
7 years ago
Stephane Nicoll 8637547509 Disable embedded server integration tests on Java 9
See gh-10455
7 years ago
Stephane Nicoll 8f8b1371b7 Disable devtools integration tests on Java 9
See gh-10454
7 years ago
Stephane Nicoll eddf27320f Configuring Surefire for samples when running on Java 9
See gh-7226
7 years ago
Stephane Nicoll 4caeed2ac4 Disable cassandra test on Java 9
See gh-10453
7 years ago
Andy Wilkinson eefdbb7341 Merge Actuator's loggers package into its logging package
Closes gh-10430
7 years ago
Andy Wilkinson 94fefbf8a6 Update to Lettuce 5.0.0.RELEASE
Closes gh-10439
7 years ago
Stephane Nicoll 27a59579db Polish 7 years ago
Andy Wilkinson 46155ca5da Tolerate illegal reflective access warnings when testing with Java 9
See gh-7226
7 years ago
Andy Wilkinson ebf3b47305 Make ExtendedGroovyClassLoader compatible with Java 9
Closes gh-10445
7 years ago
Phillip Webb bec2e97b95 Polish 7 years ago
Madhura Bhave c592e3b67d Simplify AuthenticationManagerConfiguration
Simplify `AuthenticationManagerConfiguration` following the recent
Spring Security auto-configuration updates.

See gh-7958
7 years ago
Phillip Webb 93f6168fd0 Polish 7 years ago
Stephane Nicoll 52babaa2d2 Upgrade to Spring Framework 5.0.0.RELEASE
Closes gh-10325
7 years ago
Stephane Nicoll fa78170d78 Fix LiquibaseAutoConfigurationTests with Java 9
Liquibase does not currently work with Java 9. This commit disables on
test reproducing that behaviour when running with that version.

See gh-10442
7 years ago
Stephane Nicoll 6bf33774fe Fix ConditionalOnJavaTests with Java 9
See gh-7226
7 years ago
Stephane Nicoll 1403ff1b00 Add a way to run a test only with a certain Java version
Closes gh-9530
7 years ago
Stephane Nicoll 0ccd57285f Move JavaVersion to a reusable location. 7 years ago
Andy Wilkinson 2c2b9be4be Fix Jackson custom locale with Joda Time test on Java 9
The translations for the timezone names vary between Java 8 and Java
9. For example, with Java 9, UTC's name is no longer localized while
others have different localizations. This commit updates the test
to verify that the correct locale is being used while also tolerating
the different localization's of Java 8 and 9.

See gh-7226
7 years ago
Andy Wilkinson f396740a2f Rename Micrometer Clock bean: clock -> micrometerClock
Closes gh-10436
7 years ago
Andy Wilkinson 0e2d34cdb4 Remove additional auto-configured security configurers
Closes gh-10435
7 years ago
Andy Wilkinson 8f9b47aa4c Start building against Lettuce snapshots for 5.0.0.RELEASE
See gh-10439
7 years ago
Andy Wilkinson 644e43b98c Polish 7 years ago
Phillip Webb 9e43b99966 Polish 7 years ago
Andy Wilkinson 7e2d7dcd1d Polish 7 years ago
Andy Wilkinson bd1bd6bf64 Start building against snapshots for Spring Kafka 2.0.0.RELEASE
See gh-10328
7 years ago
Andy Wilkinson 89f9112abd Start building against snapshots for Spring Data Kay-RELEASE
See gh-10329
7 years ago
Andy Wilkinson 58c3b0d390 Start building against snapshots for Spring AMQP 2.0.0.RELEASE
See gh-7053
7 years ago
Andy Wilkinson 696cdb6b58 Start building against snapshots for Spring Session 2.0.0.M5
See gh-10326
7 years ago
Stephane Nicoll 4c576f6d19 Override AspectJ version when building with Java9
See gh-7226
7 years ago
Stephane Nicoll 3894229381 Fix status handling of /application/env/{propertyName}
This commit makes sure to return a 404 status if the env endpoint is
invoked with a property that does not exist in the environment.

Closes gh-10179
7 years ago
Stephane Nicoll c2c6f49cbc Improve output of `/application/env/{propertyName}`
This commit changes the output of a single property to mention the
actual value in the environment as well as the property source that
contributed to the value.

Closes gh-10178
7 years ago
Madhura Bhave 5d05347e61 Add auto-config and starter for reactive security
Closes gh-9925
7 years ago
Madhura Bhave 1e11f80181 Fix typo in package-info.java 7 years ago
Madhura Bhave ab5a05a322 Fix user details 7 years ago
Madhura Bhave 7093602753 Simplify UserDetailsService creation in samples
Closes gh-10385
7 years ago
Stephane Nicoll 61bbaf140c Fix checkstyle violation 7 years ago
Stephane Nicoll eb045f1da1 Fix value of property in PropertySource descriptor
Prior to this commit, if a key was present in multiple PropertySources,
all descriptors shared the same common value. This commit makes sure
that each PropertySource descriptor shows the value it defines rather
than the one that is promoted in the Environment.

Closes gh-10428
7 years ago
Andy Wilkinson f52c081ec1 Merge pull request #9590 from Justin Rosenberg
* gh-9590:
  Polish "Support inlining a conf script into the default launch script"
  Support inlining a conf script into the default launch script
7 years ago
Andy Wilkinson 1e4e64aa8c Polish "Support inlining a conf script into the default launch script"
Closes gh-9590
7 years ago
JustinKSU 5ee28a08e1 Support inlining a conf script into the default launch script
See gh-9590
7 years ago
Andy Wilkinson c79b76847b Merge pull request #8988 from Ali Shahbour
* gh-8988:
  Polish "Find .conf file next to symlink to jar that's using the launch script"
  Find .conf file next to symlink to jar that's using the launch script
7 years ago