In the new Spring boot 3 Release notes, They tells that this version is going to use Jakarta EE 9 (libs named as jakarta
) instead of JEE (libs named as javax
).
They advise developers to replace imported javax
with jakarta
in this article.
If I have a spring boot app with both, javax
and jakarta
libs, will the app work and be able to be deployed in a Jakarta compatible server (e.g. Tomcat 10)?
Thanks a lot.