Annotation Interface Controller
@Documented
@Target(TYPE)
@Retention(RUNTIME)
@Component
@Scope("prototype")
public @interface Controller
Marks an annotated class as a controller exposed to browsers.
-
任意要素の概要
任意要素修飾子とタイプ任意要素説明Keep-alive settings.A name of an annotated controller.String[]
An array of allowed network protocols.Retry settings.String[]
Roles, all of which users accessing an annotated controller must have.String[]
An array of the messages of the two title separators.String[]
An array of the two title separators.String[]
Relative URLs to fetch an annotated controller.String[]
Relative URLs to fetch an annotated controller.
-
要素の詳細
-
value
String[] valueRelative URLs to fetch an annotated controller. Ifvalue()
andurls()
are omitted,name()
in the "Lower-hyphen" format is used as an URL. For instance, if a class name is MyController, an URL is "/my-controller".- 戻り値:
- relative URLs to fetch an annotated controller
- デフォルト:
- {}
-
urls
String[] urlsRelative URLs to fetch an annotated controller. Ifvalue()
andurls()
are omitted,name()
in the "Lower-hyphen" format is used as an URL. For instance, if a class name is MyController, an URL is "/my-controller".- 戻り値:
- relative URLs to fetch an annotated controller
- デフォルト:
- {}
-
name
String nameA name of an annotated controller. The name must not contains any characters other than alphabets. The instances of an annotated controller are created using this name at browsers. For instance, if the name is "MyController", a class "window.MyController" and its instance "window.myController" are created. By default, the class name of an annotated controller is used as the name. Therefore, if the class name is MyController, the name is set to the "MyController".- 戻り値:
- a controller name
- デフォルト:
- ""
-
roles
String[] rolesRoles, all of which users accessing an annotated controller must have.- 戻り値:
- roles users accessing an annotated controller must have
- デフォルト:
- {}
-
keepAlive
KeepAlive keepAliveKeep-alive settings.- 戻り値:
- keep-alive settings
- デフォルト:
- @org.wcardinal.controller.annotation.KeepAlive
-
retry
Retry retryRetry settings.- 戻り値:
- retry settings
- デフォルト:
- @org.wcardinal.controller.annotation.Retry
-
protocols
String[] protocolsAn array of allowed network protocols. Protocols must be one of the followings:- websocket
- polling-x
x
in the above protocols is a number representing a polling interval in milliseconds. E.g.,"polling-1000"
,"polling-15000"
. If the polling interval is not specified, namely if the string"polling"
is given, the polling interval is set to100
ms. If an array is empty, the default protocols are used.- 戻り値:
- allowed network protocols
- デフォルト:
- {}
-
separators
String[] separatorsAn array of the two title separators. The first separator is used as the separator between the base title specified by a title tag and the rest of the title. The second separator is used as the separator among the parts of the rest of the title.- 戻り値:
- title separators
- デフォルト:
- {" - ", " / "}
-
separatorMessages
String[] separatorMessagesAn array of the messages of the two title separators. The first separator is used as the separator between the base title specified by a title tag and the rest of the title. The second separator is used as the separator among the parts of the rest of the title.- 戻り値:
- messages of title separators
- デフォルト:
- {}
-