Andy Wilkinson
0ba6d8da4a
Switch to Yahoo for OIDC as Google's cert is not yet trusted by Java 11
...
Until the fix for JDK-8209506 [1] is available in Java 11 builds,
SSL connections to services using Google's SSL certificate do not work
due to a lack of trust. This affects both our OAuth2 client samples
which were using https://accounts.google.com as an OpenID Connect
provider.
This commit switches the two samples to use Yahoo in place of Google.
See gh-14028
[1] https://bugs.openjdk.java.net/browse/JDK-8209506
6 years ago
Johnny Lim
d5eaaf6e2a
Polish
...
Closes gh-14049
6 years ago
Andy Wilkinson
e0d67ae703
Avoid Atmosphere using a null URL to create a URLClassLoader
...
Unlike Java 8, 9, and 10, Java 11 does not tolerate a null URL being
used to create a URLClassLoader. The Atmosphere sample looks for
a resource named /WEB-INF/classes which only exists in a packaged
war application. In all other cases the resulting URL is null.
Atmosphere uses this to create a URLClassLoader which fails on Java
11.
This commit updates the sample to customize the handlers path. There
are other web application-specific assumptions in Atmosphere, such as
the scanning of WEB-INF/lib by default. This change appears to get
the sample going, but we should, perhaps, consider removing it in the
longer term, particularly as Boot itself has no Atmosphere
integration.
See gh-14028
6 years ago
Stephane Nicoll
48d365aba4
Fix checkstyle rule
6 years ago
Stephane Nicoll
aa0739e3b7
Fix checkstyle rule
6 years ago
Madhura Bhave
c69a1f208f
Remove duplicate sample from modules
6 years ago
Madhura Bhave
6512406a13
Add missing samples to pom and README
6 years ago
Madhura Bhave
bc6e4e6e55
Add auto-config for reactive OAuth2 Resource Server
...
Closes gh-13948
6 years ago
Stephane Nicoll
5cfe8dbee9
Polish
6 years ago
Madhura Bhave
d6b6a5f81f
Add auto-config for spring-security-oauth2-resource-server
...
Closes gh-13787
6 years ago
Phillip Webb
1b91c0ceb7
Merge branch '2.0.x'
6 years ago
Phillip Webb
0ec22c8bf9
Polish copyright date on changed files
6 years ago
Phillip Webb
80da9cf5eb
Merge branch '2.0.x'
6 years ago
Phillip Webb
aeb885192e
Polish ternary expressions
6 years ago
Phillip Webb
566056fd1a
Merge branch '2.0.x'
6 years ago
Phillip Webb
9ca9a491ca
Fix checkstyle issues in samples
...
Fix checkstyle issues with samples following the
spring-javaformat upgrade.
See gh-13932
6 years ago
Stephane Nicoll
e26f743e82
Merge branch '2.0.x'
6 years ago
Stephane Nicoll
b6f6dca7f8
Remove useless profile
6 years ago
Stephane Nicoll
5ccb19500b
Polish
6 years ago
Stephane Nicoll
a2494df596
Merge branch '2.0.x'
6 years ago
Stephane Nicoll
64c668f766
Polish
6 years ago
Stephane Nicoll
4e01eb865b
Polish
...
See gh-13210
6 years ago
Madhura Bhave
f88ebc06ff
Add support for OIDC Configuration Provider
...
Closes gh-13210
6 years ago
Stephane Nicoll
370af6df08
Revert "Ignore test affect by a regression in Spring Data Lovelace"
...
This reverts commit d9215d5714
.
Closes gh-13784
6 years ago
Stephane Nicoll
d9215d5714
Ignore test affect by a regression in Spring Data Lovelace
6 years ago
Stephane Nicoll
48962718d1
Merge branch '2.0.x'
6 years ago
Johnny Lim
068e22d60b
Polish
...
See gh-13776
6 years ago
Madhura Bhave
d1b8558430
Make /health and /info insecure by default
...
Closes gh-13722
6 years ago
Andy Wilkinson
6a48a440b2
Annotate our test annotations with @ExtendWith(SpringExtension.class)
...
Closes gh-13739
6 years ago
Andy Wilkinson
db58654492
Make JAXB API available to Groovy Templates when running on Java 9+
...
See gh-13670
6 years ago
Andy Wilkinson
d7fcec1ada
Remove the use of a bean override form SampleKafkaApplicationTests
...
See gh-13609
6 years ago
Andy Wilkinson
134edf9f2a
Upgrade to Jooq 3.11.2
...
Closes gh-13675
6 years ago
Andy Wilkinson
45fdf2ffa4
Support Tomcat 9 and Undertow 2
...
Closes gh-11749
Closes gh-12243
6 years ago
Andy Wilkinson
5c3b4333f8
Merge branch '2.0.x'
7 years ago
Andy Wilkinson
30f0fd1fe4
Merge branch '1.5.x' into 2.0.x
7 years ago
Andy Wilkinson
b1d8cc55fc
Polish "Fix JSP availability check when not running as a packaged war"
...
Closes gh-12859
7 years ago
Stephane Nicoll
3b0c1354cb
Upgrade to Maven Surefire/Failsafe Plugin 2.22.0
...
Closes gh-13500
7 years ago
Stephane Nicoll
af126b1bb3
Fixup version numbers following release
7 years ago
Spring Buildmaster
36b8639853
Next Development Version
7 years ago
Stephane Nicoll
c738b73c6f
Merge branch '2.0.x'
7 years ago
Johnny Lim
870d7fe16a
Use @SpringBootTest.properties in tests and samples
...
Closes gh-13453
7 years ago
Phillip Webb
e0ae805924
Update copyright header
7 years ago
Phillip Webb
845c20f13b
Merge branch '2.0.x'
7 years ago
Phillip Webb
e3bf518819
Merge branch '1.5.x' into 2.0.x
7 years ago
Phillip Webb
6c7289b822
Allow META-INF/resources in WAR classes folder
...
Update `TomcatResources` so that `META-INF/resources` folders in
`src/main/resources` no longer fail with a "URI is not hierarchical"
exception.
Closes gh-13265
7 years ago
Phillip Webb
ade1397ea2
Merge branch '2.0.x'
7 years ago
Phillip Webb
571c50e43f
Switch to functional web code to use static imports
...
Update the samples and tests to use the more idiomatic static import
style.
7 years ago
Phillip Webb
2274ac5214
Move spring-javaformat plugins to root POM
...
Relocate spring-javaformat plugins to the root of the project.
Closes gh-13306
7 years ago
Vedran Pavic
205b1c1327
Upgrade to Hazelcast 3.10.1
...
Closes gh-13322
7 years ago
Madhura Bhave
9f4a5c13a5
Add auto-config for WebFlux OAuth2 Login
...
Closes gh-13142
7 years ago