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
You should explicitely state in the doc that, once a dependency is made on your lib, deployment on servlet < 3 won't be achievable since you rely on servlet 3's javax.servlet.http.Part in your code
So, if one encounters ClassNotFoundException: javax.servlet.http.Part when starting MultipartFormDataContentTypeModule, that's because you're trying to deploy your war (with this lib packaged inside it) inside a servlet < 3 container
The text was updated successfully, but these errors were encountered:
You should explicitely state in the doc that, once a dependency is made on your lib, deployment on servlet < 3 won't be achievable since you rely on servlet 3's
javax.servlet.http.Part
in your codeSo, if one encounters
ClassNotFoundException: javax.servlet.http.Part
when startingMultipartFormDataContentTypeModule
, that's because you're trying to deploy your war (with this lib packaged inside it) inside a servlet < 3 containerThe text was updated successfully, but these errors were encountered: