-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed mentions of Java 8 #1614
Conversation
<TabItem value="spring5"> | ||
|
||
For a **Spring 5** based project please ensure that the application is annotated to scan for components of the SAP Cloud SDK: | ||
Please ensure that the application is annotated to scan for components of the SAP Cloud SDK: | ||
|
||
```java | ||
@ComponentScan({"com.sap.cloud.sdk", <your.own.package>}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this needs the Jakarta annotation instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this the workaround:
@ServletComponentScan({"com.sap.cloud.sdk.cloudplatform.servletjakarta", <your.own.package>})
Meaning that applications can go back to:
@ServletComponentScan({"com.sap.cloud.sdk", <your.own.package>})
Because it will find the only servlet which is jakarta-servlet
docs-java_versioned_docs/version-v5/guides/spring-boot-war-deployment.mdx
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think openapi docs may also need an update
What Has Changed?
I updated all mentions of Java 8 to Java 17 in the v5 docs
This is part of Update Major Dependency Versions#351
Note to reviewer: Double check the changes in the linux guide