Docs: Clarify default prefix/suffix of registry.jsp()#35430
Docs: Clarify default prefix/suffix of registry.jsp()#35430Dongnyoung wants to merge 4 commits intospring-projects:mainfrom
registry.jsp()#35430Conversation
…ttpRequest This pull request fixes a grammatical mistake in the JavaDoc of the setResponse method in MockClientHttpRequest. - Original: "the this request" - Changed to: "this request" This change improves the clarity and quality of the documentation. Signed-off-by: DongNyoung Lee <[email protected]>
Fix grammatical error in JavaDoc of setResponse method in MockClientHttpRequest.
Signed-off-by: DongNyoung Lee <[email protected]>
|
I think this is already covered in the Javadocs: https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/config/annotation/ViewResolverRegistry.html#jsp() |
|
I understand this is already covered in the Javadoc, thanks for pointing it out. Would it still make sense to keep a short [NOTE] or at least a cross-reference in the reference docs? Happy to adjust the PR accordingly if you think it adds value. |
|
@Dongnyoung I don't think this is the right place for documenting such details, but I would suggest to rework your PR as an update of https://docs.spring.io/spring-framework/reference/web/webmvc-view/mvc-jsp.html to replace the XML bean declaration by a more high level JavaConfig |
|
Thanks a lot for the valuable feedback 🙏 Opened a new PR at #35444 with the updated version. |
Hello,
This PR clarifies the Spring MVC documentation for View Resolvers.
The current example shows
registry.jsp();but does not explain what defaults are applied.In this file: https://github.com/spring-projects/spring-framework/blob/main/framework-docs/modules/ROOT/pages/web/webmvc/mvc-config/view-resolvers.adoc
Problem
registry.jsp()registers anInternalResourceViewResolverwith sensible defaults.Changes Introduced
[NOTE]block immediately after the JSP example./WEB-INF/.jspapplication.propertiesexample was intentionally omitted here, since it is more relevant to Spring Boot documentation.Closes #35429
Thank you for reviewing.