接口 ResourceResolver

    • 方法详细资料

      • resolveResource

        @Nullable
        Resource resolveResource​(@Nullable
                                 HttpServletRequest request,
                                 String requestPath,
                                 List<? extends Resource> locations,
                                 ResourceResolverChain chain)
        Resolve the supplied request and request path to a Resource that exists under one of the given resource locations.
        参数:
        request - the current request (may not be present in some calls)
        requestPath - the portion of the request path to use
        locations - the locations to search in when looking up resources
        chain - the chain of remaining resolvers to delegate to
        返回:
        the resolved resource, or null if unresolved
      • resolveUrlPath

        @Nullable
        String resolveUrlPath​(String resourcePath,
                              List<? extends Resource> locations,
                              ResourceResolverChain chain)
        Resolve the externally facing public URL path for clients to use to access the resource that is located at the given internal resource path.

        This is useful when rendering URL links to clients.

        参数:
        resourcePath - the internal resource path
        locations - the locations to search in when looking up resources
        chain - the chain of resolvers to delegate to
        返回:
        the resolved public URL path, or null if unresolved