-
Notifications
You must be signed in to change notification settings - Fork 41.1k
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
Add missing attributes to ServletRegistration annotation #45006
Add missing attributes to ServletRegistration annotation #45006
Conversation
29100b0
to
a705fe9
Compare
…se properties, but @ServletRegistration hasn't: initParameters, servletRegistrationBeans, multipartConfig Signed-off-by: dmytrodanilenkov <d.danilenkov.ext@sportradar.com>
…se properties, but @ServletRegistration hasn't: initParameters, servletRegistrationBeans, multipartConfig Signed-off-by: Dmytro Danilenkov <milgoff@gmail.com> Signed-off-by: dmytrodanilenkov <d.danilenkov.ext@sportradar.com>
9486831
to
ab74295
Compare
…se properties, but @ServletRegistration hasn't: initParameters, servletRegistrationBeans, multipartConfig Signed-off-by: Dmytro Danilenkov <milgoff@gmail.com>
Duplicates #45005. |
Thanks, @dmytrodanilenkov, but someone else opened a PR for the same change a little before you. |
@wilkinsona not sure I got it. I opened for #45001, not for #45000 |
Oops, sorry about that. I was confused by the references to #45000 in the commit messages. |
@Target({}) | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Documented | ||
@interface MultipartConfigValues { |
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.
Could we directly use jakarta.servlet.annotation.MultipartConfig
here?
Dupe of #45007. |
Closes #45001