jakarta-migration Questions
6
Current maven plugins like jaxb2-maven-plugin and maven-jaxb2-plugin generate code using the package javax.xml instead of the new jakarta.xml package of Jakarta XML Binding in Jakarta EE. It seems ...
Jarad asked 11/3, 2021 at 9:57
1
Using Spring boot 3.0.10 application with third party libraries like opwnws, opensaml which use javax packages. These libraries haven't releases their jakarta versions so runtime transformation fro...
Elfland asked 29/5 at 13:55
3
As I updated my Spring Boot application to Java 17 and Spring Boot 3, I migrated from Java EE to Jakarta. I used the MimeMessageParser of org.apache.commons.mail.util.MimeMessageParser, but it expe...
Whitten asked 24/4, 2023 at 14:33
3
I need to generate spring controller source code using swagger codegen gradle plugin with Jakarta packages but I could not see an option in config to do so
I have tried to use below options to gene...
Cristionna asked 15/2, 2023 at 5:37
2
We are migrating our services to Spring Boot 3. However, we have encountered an issue regarding the conversion from javax.xml.namespace to jakarta.xml.namespace. It seems that this namespace ...
Zinck asked 15/7, 2023 at 5:14
4
Solved
I am trying to execute JSP with JSTL, but I am not able to. I have Apache Tomcat 10, i.e. jakarta.servlet.* instead of javax.servlet.*. So whenever I execute the web app with JSTL 1.2.5 files...
Tinfoil asked 29/10, 2020 at 19:24
1
I' trying to migrate a spring boot application from spring boot 2.7.8 to 3.0.6. The application uses jsf mojarra and primefaces for GUI. The application works fine with spring boot 2.7.8
Spring boo...
Chorea asked 12/5, 2023 at 14:28
1
Solved
I'm writing Backend using Quarkus. Below is my POM.xml file:
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xs...
Radioactive asked 14/6, 2023 at 10:36
1
I am upgrading my application from Spring Boot 2 to Spring Boot 3. I am aware that we have to use jakarta.* package instead of javax.*, but I am not sure what to do with javax.net.* and javax.sql.*...
Propertied asked 30/5, 2023 at 11:51
1
Solved
Quarkus 3 has introduced Jakarta EE 10 that need to replace all the javax.* package with jakarta. package.
In our application we set these system properties at startup:
-Djavax.net.ssl.trustStore=....
Hatching asked 15/5, 2023 at 15:31
3
I have updated the lib and dependency of my project including :
From OpenJDK 11 to OpenJDK 17.0.2
From JavaEE to Jakarta 9
From Springboot 2.7.4 to 3.0.1
The application can be built successfully...
Packthread asked 28/12, 2022 at 2:29
4
I upgraded to Springboot 3.0 and in my hibernate entity class has something like:
@Column(columnDefinition = "jsonb", nullable = false, updatable = true, name = "accounts")
@...
Classieclassification asked 31/12, 2022 at 0:35
1
I've updated my project from Java 11 to 17 and accordingly I had to update my WildFly version from 15 to 25 because the WAR of Java 17 is not compatible with WildFly 15. Question is, do I have to m...
Apocalyptic asked 27/1, 2023 at 9:38
1
Solved
I'm trying to use a method parameter validation feature supported by Bean Validation 1.1. For instance, the following method triggers the validation of the first parameter, making sure it's valid:
...
Persas asked 11/1, 2023 at 15:29
1
Solved
I used the Plain Java starter app from the Hello World Starters page of downloads.
I updated its Maven POM to the latest versions of dependencies. So Vaadin 23.3.1, Java 19, jetty-maven-plugin 10.0...
Periodical asked 24/12, 2022 at 3:4
1
Spring Boot 3 gives with its milestones the customers time to migrate from Java EE to Jakarta, changing package names from javax to jakarta. But it's more than package names. I can't get Spring Boo...
Mungo asked 25/7, 2022 at 17:4
2
Solved
Is it at all possible to use older Java EE libraries (with javax package) in new Jakarta EE applications (with jakarta package)?
All the APIs would be backwards compatible if it weren't for the tra...
Superordinate asked 26/1, 2022 at 11:6
1
Solved
This is a follow up to this question. I don't think it's a duplicate because the accepted answer indicates that Jetty 11 doesn't work with javax servlets, but I'm asking why Jetty 11 doesn't work w...
Aquilegia asked 20/6, 2021 at 16:58
1
Solved
I am adopting Jakarta EE 9 and developing an EE application with EJB and WAR modules. EJB is already done and deployed on GlassFish 6.
Now I want to develop WAR module with PrimeFaces as part of th...
Phasia asked 6/3, 2021 at 17:7
1
© 2022 - 2024 — McMap. All rights reserved.