All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.messaging.handler.annotation.MessageMapping Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2017 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.messaging.handler.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.springframework.messaging.Message;

/**
 * Annotation for mapping a {@link Message} onto message-handling methods by matching
 * to the message destination. This annotation can also be used on the type-level in
 * which case it defines a common destination prefix or pattern for all method-level
 * annotations including method-level
 * {@link org.springframework.messaging.simp.annotation.SubscribeMapping @SubscribeMapping}
 * annotations.
 *
 * 

Handler methods which are annotated with this annotation are allowed to have * flexible signatures. They may have arguments of the following types, in arbitrary * order: *

    *
  • {@link Message} to get access to the complete message being processed.
  • *
  • {@link Payload}-annotated method arguments to extract the payload of * a message and optionally convert it using a * {@link org.springframework.messaging.converter.MessageConverter}. * The presence of the annotation is not required since it is assumed by default * for method arguments that are not annotated. Payload method arguments annotated * with Validation annotations (like * {@link org.springframework.validation.annotation.Validated}) will be subject to * JSR-303 validation.
  • *
  • {@link Header}-annotated method arguments to extract a specific * header value along with type conversion with a * {@link org.springframework.core.convert.converter.Converter} if necessary.
  • *
  • {@link Headers}-annotated argument that must also be assignable to * {@link java.util.Map} for getting access to all headers.
  • *
  • {@link org.springframework.messaging.MessageHeaders} arguments for * getting access to all headers.
  • *
  • {@link org.springframework.messaging.support.MessageHeaderAccessor} or * with STOMP over WebSocket support also sub-classes such as * {@link org.springframework.messaging.simp.SimpMessageHeaderAccessor} * for convenient access to all method arguments.
  • *
  • {@link DestinationVariable}-annotated arguments for access to template * variable values extracted from the message destination (e.g. /hotels/{hotel}). * Variable values will be converted to the declared method argument type.
  • *
  • {@link java.security.Principal} method arguments are supported with * STOMP over WebSocket messages. It reflects the user logged in to the * WebSocket session on which the message was received. Regular HTTP-based * authentication (e.g. Spring Security based) can be used to secure the * HTTP handshake that initiates WebSocket sessions.
  • *
* *

A return value will get wrapped as a message and sent to a default response * destination or to a custom destination specified with an {@link SendTo @SendTo} * method-level annotation. Such a response may also be provided asynchronously * via a {@link org.springframework.util.concurrent.ListenableFuture} return type * or a corresponding JDK 8 {@link java.util.concurrent.CompletableFuture} / * {@link java.util.concurrent.CompletionStage} handle. * *

STOMP over WebSocket

*

An {@link SendTo @SendTo} annotation is not strictly required — by default * the message will be sent to the same destination as the incoming message but with * an additional prefix ({@code "/topic"} by default). It is also possible to use the * {@link org.springframework.messaging.simp.annotation.SendToUser} annotation to * have the message directed to a specific user if connected. The return value is * converted with a {@link org.springframework.messaging.converter.MessageConverter}. * *

NOTE: When using controller interfaces (e.g. for AOP proxying), * make sure to consistently put all your mapping annotations - such as * {@code @MessageMapping} and {@code @SubscribeMapping} - on * the controller interface rather than on the implementation class. * * @author Rossen Stoyanchev * @since 4.0 * @see org.springframework.messaging.simp.annotation.support.SimpAnnotationMethodMessageHandler */ @Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface MessageMapping { /** * Destination-based mapping expressed by this annotation. *

For STOMP over WebSocket messages: this is the destination of the * STOMP message (e.g. {@code "/positions"}). Ant-style path patterns * (e.g. {@code "/price.stock.*"}) and path template variables (e.g. * "/price.stock.{ticker}") are also supported. */ String[] value() default {}; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy