123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <xsd:schema xmlns="http://www.springframework.org/schema/mvc"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- xmlns:beans="http://www.springframework.org/schema/beans"
- xmlns:tool="http://www.springframework.org/schema/tool"
- targetNamespace="http://www.springframework.org/schema/mvc"
- elementFormDefault="qualified"
- attributeFormDefault="unqualified">
- <xsd:import namespace="http://www.springframework.org/schema/beans" schemaLocation="http://www.springframework.org/schema/beans/spring-beans-3.1.xsd" />
- <xsd:import namespace="http://www.springframework.org/schema/tool" schemaLocation="http://www.springframework.org/schema/tool/spring-tool-3.1.xsd" />
- <xsd:element name="annotation-driven">
- <xsd:annotation>
- <xsd:documentation source="java:org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"><![CDATA[
- Configures the annotation-driven Spring MVC Controller programming model.
- Note that, with Spring 3.0, this tag works in Servlet MVC only!
- See org.springframework.web.servlet.config.annotation.EnableWebMvc Javadoc for
- information on code-based alternatives to enabling annotation-driven Spring MVC
- support.
- ]]></xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:all minOccurs="0">
- <xsd:element name="message-converters" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- Configures one or more HttpMessageConverter types to use for converting @RequestBody method parameters and @ResponseBody method return values.
- Using this configuration element is optional.
- HttpMessageConverter registrations provided here will take precedence over HttpMessageConverter types registered by default.
- Also see the register-defaults attribute if you want to turn off default registrations entirely.
- ]]></xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:sequence>
- <xsd:element ref="beans:bean" minOccurs="1" maxOccurs="unbounded">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The HttpMessageConverter bean definition.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- </xsd:sequence>
- <xsd:attribute name="register-defaults" type="xsd:boolean" default="true">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- Whether or not default HttpMessageConverter registrations should be added in addition to the ones provided within this element.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
- </xsd:complexType>
- </xsd:element>
- <xsd:element name="argument-resolvers" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- Configures HandlerMethodArgumentResolver types to support custom controller method argument types.
- Using this option does not override the built-in support for resolving handler method arguments.
- To customize the built-in support for argument resolution configure RequestMappingHandlerAdapter directly.
- ]]></xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:sequence>
- <xsd:element ref="beans:bean" minOccurs="1" maxOccurs="unbounded">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The HandlerMethodArgumentResolver (or WebArgumentResolver for backwards compatibility) bean definition.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- </xsd:sequence>
- </xsd:complexType>
- </xsd:element>
- <xsd:element name="return-value-handlers" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- Configures HandlerMethodReturnValueHandler types to support custom controller method return value handling.
- Using this option does not override the built-in support for handling return values.
- To customize the built-in support for handling return values configure RequestMappingHandlerAdapter directly.
- ]]></xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:sequence>
- <xsd:element ref="beans:bean" minOccurs="1" maxOccurs="unbounded">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The HandlerMethodReturnValueHandler bean definition.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- </xsd:sequence>
- </xsd:complexType>
- </xsd:element>
- </xsd:all>
- <xsd:attribute name="conversion-service" type="xsd:string">
- <xsd:annotation>
- <xsd:documentation source="java:org.springframework.core.convert.ConversionService"><![CDATA[
- The bean name of the ConversionService that is to be used for type conversion during field binding.
- This attribute is not required, and only needs to be specified explicitly if custom converters need to be configured.
- If not specified, a default FormattingConversionService is registered that contains converters to/from standard JDK types.
- In addition, full support for date/time formatting will be installed if the Joda Time library is present on the classpath.
- ]]></xsd:documentation>
- <xsd:appinfo>
- <tool:annotation kind="ref">
- <tool:expected-type type="java:org.springframework.core.convert.ConversionService" />
- </tool:annotation>
- </xsd:appinfo>
- </xsd:annotation>
- </xsd:attribute>
- <xsd:attribute name="validator" type="xsd:string">
- <xsd:annotation>
- <xsd:documentation source="java:org.springframework.validation.Validator"><![CDATA[
- The bean name of the Validator that is to be used to validate Controller model objects.
- This attribute is not required, and only needs to be specified explicitly if a custom Validator needs to be configured.
- If not specified, JSR-303 validation will be installed if a JSR-303 provider is present on the classpath.
- ]]></xsd:documentation>
- <xsd:appinfo>
- <tool:annotation kind="ref">
- <tool:expected-type type="java:org.springframework.validation.Validator" />
- </tool:annotation>
- </xsd:appinfo>
- </xsd:annotation>
- </xsd:attribute>
- <xsd:attribute name="message-codes-resolver" type="xsd:string">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The bean name of a MessageCodesResolver to use to build message codes from data binding and validation error codes.
- This attribute is not required.
- If not specified the DefaultMessageCodesResolver is used.
- ]]></xsd:documentation>
- <xsd:appinfo>
- <tool:annotation kind="ref">
- <tool:expected-type type="java:org.springframework.validation.MessageCodesResolver" />
- </tool:annotation>
- </xsd:appinfo>
- </xsd:annotation>
- </xsd:attribute>
- <xsd:attribute name="ignoreDefaultModelOnRedirect" type="xsd:boolean">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- By default the content of the "default" model is used both during rendering and redirect scenarios.
- Alternatively a controller method can declare a RedirectAttributes argument and use it to provide attributes for a redirect.
- Setting this flag to true ensures the "default" model is never used in a redirect scenario even if a RedirectAttributes argument is not declared.
- Setting it to false means the "default" model may be used in a redirect if the controller method doesn't declare a RedirectAttributes argument.
- The default setting is false but new applications should consider setting it to true.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
- </xsd:complexType>
- </xsd:element>
- <xsd:element name="resources">
- <xsd:annotation>
- <xsd:documentation
- source="java:org.springframework.web.servlet.resource.ResourceHttpRequestHandler"><![CDATA[
- Configures a handler for serving static resources such as images, js, and, css files with cache headers optimized for efficient
- loading in a web browser. Allows resources to be served out of any path that is reachable via Spring's Resource handling.
- ]]></xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:attribute name="mapping" use="required" type="xsd:string">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The URL mapping pattern, within the current Servlet context, to use for serving resources from this handler, such as "/resources/**"
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
- <xsd:attribute name="location" use="required" type="xsd:string">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The resource location from which to serve static content, specified at a Spring Resource pattern.
- Each location must point to a valid directory. Multiple locations may be specified as a comma-separated list,
- and the locations will be checked for a given resource in the order specified. For example, a value of
- "/, classpath:/META-INF/public-web-resources/" will allow resources to be served both from the web app
- root and from any JAR on the classpath that contains a /META-INF/public-web-resources/ directory,
- with resources in the web app root taking precedence.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
- <xsd:attribute name="cache-period" type="xsd:string">
- <xsd:annotation>
- <xsd:documentation>
- <![CDATA[
- Specifies the cache period for the resources served by this resource handler, in seconds.
- The default is to not send any cache headers but rather to rely on last-modified timestamps only.
- Set this to 0 in order to send cache headers that prevent caching, or to a positive number of
- seconds in order to send cache headers with the given max-age value.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
- <xsd:attribute name="order" type="xsd:int">
- <xsd:annotation>
- <xsd:documentation>
- <![CDATA[
- Specifies the order of the HandlerMapping for the resource handler. The default order is Ordered.LOWEST_PRECEDENCE - 1.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
- </xsd:complexType>
- </xsd:element>
- <xsd:element name="default-servlet-handler">
- <xsd:annotation>
- <xsd:documentation
- source="java:org.springframework.web.servlet.resource.DefaultServletHttpRequestHandler"><![CDATA[
- Configures a handler for serving static resources by forwarding to the Servlet container's default Servlet. Use of this
- handler allows using a "/" mapping with the DispatcherServlet while still utilizing the Servlet container to serve static
- resources.
- This handler will forward all requests to the default Servlet. Therefore it is important that it remains last in the
- order of all other URL HandlerMappings. That will be the case if you use the "annotation-driven" element or alternatively
- if you are setting up your customized HandlerMapping instance be sure to set its "order" property to a value lower than
- that of the DefaultServletHttpRequestHandler, which is Integer.MAX_VALUE.
- ]]></xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:attribute name="default-servlet-name" type="xsd:string">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The name of the default Servlet to forward to for static resource requests. The handler will try to auto-detect the container's
- default Servlet at startup time using a list of known names. If the default Servlet cannot be detected because of using an unknown
- container or because it has been manually configured, the servlet name must be set explicitly.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
- </xsd:complexType>
- </xsd:element>
- <xsd:element name="interceptors">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The ordered set of interceptors that intercept HTTP Servlet Requests handled by Controllers.
- Interceptors allow requests to be pre/post processed before/after handling.
- Each inteceptor must implement the org.springframework.web.servlet.HandlerInterceptor or
- org.springframework.web.context.request.WebRequestInterceptor interface.
- The interceptors in this set are automatically configured on each registered HandlerMapping.
- The URI paths each interceptor applies to are configurable.
- ]]></xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:choice maxOccurs="unbounded">
- <xsd:choice>
- <xsd:element ref="beans:bean">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- Registers an interceptor that intercepts every request regardless of its URI path..
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element ref="beans:ref">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- Registers an interceptor that intercepts every request regardless of its URI path..
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- </xsd:choice>
- <xsd:element name="interceptor">
- <xsd:annotation>
- <xsd:documentation source="java:org.springframework.web.servlet.handler.MappedInterceptor"><![CDATA[
- Registers an interceptor that interceptors requests sent to one or more URI paths.
- ]]></xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:sequence>
- <xsd:element name="mapping" maxOccurs="unbounded">
- <xsd:complexType>
- <xsd:attribute name="path" type="xsd:string" use="required">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- A path into the application intercepted by this interceptor.
- Exact path mapping URIs (such as "/myPath") are supported as well as Ant-stype path patterns (such as /myPath/**).
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
- </xsd:complexType>
- </xsd:element>
- <xsd:choice>
- <xsd:element ref="beans:bean">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The interceptor's bean definition.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element ref="beans:ref">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- A reference to an interceptor bean.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- </xsd:choice>
- </xsd:sequence>
- </xsd:complexType>
- </xsd:element>
- </xsd:choice>
- </xsd:complexType>
- </xsd:element>
- <xsd:element name="view-controller">
- <xsd:annotation>
- <xsd:documentation
- source="java:org.springframework.web.servlet.mvc.ParameterizableViewController"><![CDATA[
- Defines a simple Controller that selects a view to render the response.
- ]]></xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:attribute name="path" type="xsd:string" use="required">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The URL path the view is mapped to.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
- <xsd:attribute name="view-name" type="xsd:string">
- <xsd:annotation>
- <xsd:documentation><![CDATA[
- The name of the view to render. Optional.
- If not specified, the view name will be determined from the current HttpServletRequest
- by the DispatcherServlet's RequestToViewNameTranslator.
- ]]></xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
- </xsd:complexType>
- </xsd:element>
- </xsd:schema>
|