Java org.springframework.web.servlet.mvc.method.annotation MvcUriComponentsBuilder fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.servlet.mvc.method.annotation MvcUriComponentsBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.servlet.mvc.method.annotation MvcUriComponentsBuilder.

The text is from its open source code.

Constructor

Method

UriComponentsBuilderfromController(Class controllerType)
Create a UriComponentsBuilder from the mapping of a controller class and current request information including Servlet mapping.
MethodArgumentBuilderfromMappingName(@Nullable UriComponentsBuilder builder, String name)
An alternative to #fromMappingName(String) that accepts a UriComponentsBuilder representing the base URL.
UriComponentsBuilderfromMethodCall(Object info)
Create a UriComponentsBuilder by invoking a "mock" controller method.
UriComponentsBuilderfromMethodName(Class controllerType, String methodName, Object... args)
Create a UriComponentsBuilder from the mapping of a controller method and an array of method argument values.
UriComponentsBuilderfromMethodName(UriComponentsBuilder builder, Class controllerType, String methodName, Object... args)
An alternative to #fromMethodName(Class,String,Object) that accepts a UriComponentsBuilder representing the base URL.
Ton(Class controllerType)
Return a "mock" controller instance.