数据传递--------博客-----------springMVC源码分析--RequestToViewNameTranslator请求到视图名称的转换

参考来源:http://blog.csdn.net/qq924862077/article/details/54286976?utm_source=gold_browser_extension

RequestToViewNameTranslator可以在处理器返回的View为空时使用它根据Request获取viewName。RequestToViewNameTranslator提供的实现类只有一个DefaultRequestToViewNameTranslator。

接口RequestToViewNameTranslator中定义的如下:提供了getViewName抽象方法,其实就是根据request请求获取来组装视图名称。

  1. public interface RequestToViewNameTranslator {
  2. /**
  3. * Translate the given {@link HttpServletRequest} into a view name.
  4. * @param request the incoming {@link HttpServletRequest} providing
  5. * the context from which a view name is to be resolved
  6. * @return the view name (or {@code null} if no default found)
  7. * @throws Exception if view name translation fails
  8. */
  9. String getViewName(HttpServletRequest request) throws Exception;
  10. }

其实现类DefaultRequestToViewNameTranslator中的实现如下:其实其简单实现就是将请求名称作为视图名称返回,逻辑还是比较简单的。

  1. @Override
  2. public String getViewName(HttpServletRequest request) {
  3. String lookupPath = this.urlPathHelper.getLookupPathForRequest(request);
  4. return (this.prefix + transformPath(lookupPath) + this.suffix);
  5. }

接下来我们看看RequestToViewNameTranslator在springMVC中的具体运行流程:

首先在DispatcherServlet的doDispatch函数中会设置默认的视图名

  1. protected void doDispatch(HttpServletRequest request, HttpServletResponse response) throws Exception {
  2. ......
  3. //设置默认的视图名称
  4. applyDefaultViewName(processedRequest, mv);
  5. ......
  6. }

在applyDefaultViewName中会判断ModelAndView的hasView为空时,就设置viewName

  1. private void applyDefaultViewName(HttpServletRequest request, ModelAndView mv) throws Exception {
  2. if (mv != null && !mv.hasView()) {
  3. mv.setViewName(getDefaultViewName(request));
  4. }
  5. }

getDefaultViewName的实现逻辑还是在ViewNameTranslator中。

  1. protected String getDefaultViewName(HttpServletRequest request) throws Exception {
  2. return this.viewNameTranslator.getViewName(request);
  3. }

在DefaultViewNameTranslator中实现的getViewName的逻辑如下,其实就是将请求路径作为ViewName

  1. @Override
  2. public String getViewName(HttpServletRequest request) {
  3. String lookupPath = this.urlPathHelper.getLookupPathForRequest(request);
  4. return (this.prefix + transformPath(lookupPath) + this.suffix);
  5. }

实现类DefaultViewNameTranslator的完整源码如下:

    1. public class DefaultRequestToViewNameTranslator implements RequestToViewNameTranslator {
    2. private static final String SLASH = "/";
    3. private String prefix = "";
    4. private String suffix = "";
    5. private String separator = SLASH;
    6. private boolean stripLeadingSlash = true;
    7. private boolean stripTrailingSlash = true;
    8. private boolean stripExtension = true;
    9. private UrlPathHelper urlPathHelper = new UrlPathHelper();
    10. public void setPrefix(String prefix) {
    11. this.prefix = (prefix != null ? prefix : "");
    12. }
    13. public void setSuffix(String suffix) {
    14. this.suffix = (suffix != null ? suffix : "");
    15. }
    16. public void setSeparator(String separator) {
    17. this.separator = separator;
    18. }
    19. public void setStripLeadingSlash(boolean stripLeadingSlash) {
    20. this.stripLeadingSlash = stripLeadingSlash;
    21. }
    22. public void setStripTrailingSlash(boolean stripTrailingSlash) {
    23. this.stripTrailingSlash = stripTrailingSlash;
    24. }
    25. public void setStripExtension(boolean stripExtension) {
    26. this.stripExtension = stripExtension;
    27. }
    28. public void setAlwaysUseFullPath(boolean alwaysUseFullPath) {
    29. this.urlPathHelper.setAlwaysUseFullPath(alwaysUseFullPath);
    30. }
    31. public void setUrlDecode(boolean urlDecode) {
    32. this.urlPathHelper.setUrlDecode(urlDecode);
    33. }
    34. public void setRemoveSemicolonContent(boolean removeSemicolonContent) {
    35. this.urlPathHelper.setRemoveSemicolonContent(removeSemicolonContent);
    36. }
    37. public void setUrlPathHelper(UrlPathHelper urlPathHelper) {
    38. Assert.notNull(urlPathHelper, "UrlPathHelper must not be null");
    39. this.urlPathHelper = urlPathHelper;
    40. }
    41. //根据请求获取视图名称
    42. @Override
    43. public String getViewName(HttpServletRequest request) {
    44. String lookupPath = this.urlPathHelper.getLookupPathForRequest(request);
    45. return (this.prefix + transformPath(lookupPath) + this.suffix);
    46. }
    47. protected String transformPath(String lookupPath) {
    48. String path = lookupPath;
    49. if (this.stripLeadingSlash && path.startsWith(SLASH)) {
    50. path = path.substring(1);
    51. }
    52. if (this.stripTrailingSlash && path.endsWith(SLASH)) {
    53. path = path.substring(0, path.length() - 1);
    54. }
    55. if (this.stripExtension) {
    56. path = StringUtils.stripFilenameExtension(path);
    57. }
    58. if (!SLASH.equals(this.separator)) {
    59. path = StringUtils.replace(path, SLASH, this.separator);
    60. }
    61. return path;
    62. }
    63. }
上一篇:spring-boot自定义启动端口


下一篇:JAVA 图像操作辅助类