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/kafka/KafkaProperties.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/session/SessionAutoConfigurationEarlyInitializationIntegrationTests.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/first-application.adoc
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,9 +141,10 @@ Open your favorite text editor and add the following:
141
141
plugins {
142
142
id 'java'
143
143
id 'org.springframework.boot' version '{spring-boot-version}'
144
-
id 'io.spring.dependency-management' version '1.1.0'
145
144
}
146
145
146
+
apply plugin: 'io.spring.dependency-management'
147
+
147
148
group = 'com.example'
148
149
version = '0.0.1-SNAPSHOT'
149
150
sourceCompatibility = '17'
@@ -247,7 +248,7 @@ If you run `gradle dependencies` again, you see that there are now a number of a
247
248
[[getting-started.first-application.code]]
248
249
=== Writing the Code
249
250
To finish our application, we need to create a single Java file.
250
-
By default, Maven and Gradle compiles sources from `src/main/java`, so you need to create that directory structure and then add a file named `src/main/java/MyApplication.java` to contain the following code:
251
+
By default, Maven and Gradle compile sources from `src/main/java`, so you need to create that directory structure and then add a file named `src/main/java/MyApplication.java` to contain the following code:
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docs/src/docs/asciidoc/web/spring-security.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -211,7 +211,7 @@ For JWT configuration, a JWK Set URI or OIDC Issuer URI needs to be specified, a
211
211
NOTE: If the authorization server does not support a JWK Set URI, you can configure the resource server with the Public Key used for verifying the signature of the JWT.
212
212
This can be done using the configprop:spring.security.oauth2.resourceserver.jwt.public-key-location[] property, where the value needs to point to a file containing the public key in the PEM-encoded x509 format.
213
213
214
-
The configprop:spring.security.oauth2.resourceserver.jwt.audiences[] property can be used to specifify the expected values of the aud claim in JWTs.
214
+
The configprop:spring.security.oauth2.resourceserver.jwt.audiences[] property can be used to specify the expected values of the aud claim in JWTs.
215
215
For example, to require JWTs to contain an aud claim with the value `my-audience`:
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-testcontainers/src/main/java/org/springframework/boot/testcontainers/lifecycle/TestcontainersLifecycleBeanFactoryPostProcessor.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@
29
29
30
30
/**
31
31
* {@link BeanFactoryPostProcessor} to prevent {@link AutoCloseable} destruction calls so
32
-
* that {@link TestcontainersLifecycleBeanFactoryPostProcessor} can be smarter about which
32
+
* that {@link TestcontainersLifecycleBeanPostProcessor} can be smarter about which
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-testcontainers/src/main/java/org/springframework/boot/testcontainers/lifecycle/TestcontainersLifecycleBeanPostProcessor.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ class TestcontainersLifecycleBeanPostProcessor implements DestructionAwareBeanPo
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-testcontainers/src/test/java/org/springframework/boot/testcontainers/lifecycle/TestcontainersLifecycleApplicationContextInitializerTests.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,8 +32,8 @@
32
32
importstaticorg.mockito.Mockito.times;
33
33
34
34
/**
35
-
* Tests for {@link TestcontainersLifecycleApplicationContextInitializer} and
36
-
* {@link TestcontainersLifecycleBeanPostProcessor} and
35
+
* Tests for {@link TestcontainersLifecycleApplicationContextInitializer},
36
+
* {@link TestcontainersLifecycleBeanPostProcessor}, and
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-testcontainers/src/test/java/org/springframework/boot/testcontainers/lifecycle/TestcontainersLifecycleOrderIntegrationTests.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-testcontainers/src/test/java/org/springframework/boot/testcontainers/service/connection/ServiceConnectionContextCustomizerTests.java
0 commit comments