com.vaadin.flow.router.
Annotation Interface Route
Defines the route template suffix for components that function as navigation targets in routing.
The route template of the navigation target is composed of the values of all
RoutePrefix
annotated on the layout()
and
ParentLayout
class values, starting from the root parent and joined
together using slash delimiter to form a path form string.
There is also RouteAlias
annotation which may be declared in addition
to this annotation and may be used multiple times.
Since:
1.0
See Also:
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionboolean
Ignore route prefixes from parent layouts and only use the path defined in this annotation.
boolean
Class<? extends RouterLayout>
Sets the parent component for the route target component.
boolean
Marks if this Route should be registered during the initial route registration on servlet startup.
Sets the route template suffix value of the annotated class.
-
Field Summary
Fields
-
Field Details
-
NAMING_CONVENTION
See Also:
-
-
Element Details
-
value
String valueSets the route template suffix value of the annotated class.
If no value is provided, the path will be derived from the class name of the component. The derived name will be in lower case and trailing "View" will be removed. Also, MainView or Main names will be mapped to root (value will be "").
This value accepts also parameter template segments which can be defined using following format:
:parameterName[?|*][(regex)]
.Note for framework developers: do not use the value directly, but use the helper method
RouteUtil.resolve(VaadinContext, Class)
, so that naming convention based values are dealt correctly.Returns:
the explicit path value of this route
Default:
"___NAMING_CONVENTION___"
-
layout
Class<? extends RouterLayout> layoutSets the parent component for the route target component.
When navigating between components that use the same layout, the same component instance is reused. Default layout target is the
UI
, but the layout should not be a customUI
asUI
is a special class used to know where the route stack ends and no parent layouts should be involved.All layout stacks will be appended to the
UI
as it represents the Body element.Returns:
the layout component class used by the route target component.
See Also:
Default:
com.vaadin.flow.component.UI.class
-
absolute
boolean absoluteIgnore route prefixes from parent layouts and only use the path defined in this annotation.
Returns:
true
to ignore parent layout prefixes,false
otherwiseDefault:
false
-
registerAtStartup
boolean registerAtStartupMarks if this Route should be registered during the initial route registration on servlet startup.
Default is to register route at startup.
Returns:
setting to false skips automatic registration
Default:
true
-
autoLayout
boolean autoLayoutMarks if Route should apply a
Layout
matching route value when nolayout()
defined. If set to false no layout will be searched for.Returns:
false
skips automatic layoutDefault:
true
-