We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
please plan to update java servlet version (javax.servlet -> jakarta.servlet) I need to integration to springboot 3
Priority: 3
Component: Website
The text was updated successfully, but these errors were encountered:
Thanks for this ticket, I have a WIP where I was attempting to do this but some things are breaking so it will take a bit longer
Sorry, something went wrong.
OK, I already try replace javax.servlet to jakarta.servlet , and it work with springboot, but I need set JettyMode = true
@Bean public ServletRegistrationBean getStatusServlet() { GetStatusServlet servlet = new GetStatusServlet(); servlet.setJettyMode(true); return new ServletRegistrationBean(servlet, "/hop/status/origin"); }
and mark each servlet class code in org.apache.hop.www because request.getRequestURI() is empty string ...
//if (isJettyMode() && !request.getRequestURI().startsWith(CONTEXT_PATH)) { // return; //}
No branches or pull requests
What would you like to happen?
please plan to update java servlet version (javax.servlet -> jakarta.servlet)
I need to integration to springboot 3
Issue Priority
Priority: 3
Issue Component
Component: Website
The text was updated successfully, but these errors were encountered: