diff --git a/spring-beans/src/main/java/org/springframework/beans/MutablePropertyValues.java b/spring-beans/src/main/java/org/springframework/beans/MutablePropertyValues.java index d5653a32617..efb4ae9bbd8 100644 --- a/spring-beans/src/main/java/org/springframework/beans/MutablePropertyValues.java +++ b/spring-beans/src/main/java/org/springframework/beans/MutablePropertyValues.java @@ -263,6 +263,7 @@ public class MutablePropertyValues implements PropertyValues, Serializable { * Get the raw property value, if any. * @param propertyName the name to search for * @return the raw property value, or {@code null} + * @since 4.0 * @see #getPropertyValue(String) * @see PropertyValue#getValue() */ diff --git a/spring-context/src/main/java/org/springframework/jmx/access/MBeanClientInterceptor.java b/spring-context/src/main/java/org/springframework/jmx/access/MBeanClientInterceptor.java index b07c160eb42..fb59a362917 100644 --- a/spring-context/src/main/java/org/springframework/jmx/access/MBeanClientInterceptor.java +++ b/spring-context/src/main/java/org/springframework/jmx/access/MBeanClientInterceptor.java @@ -604,6 +604,7 @@ public class MBeanClientInterceptor this.connector.close(); } + /** * Simple wrapper class around a method name and its signature. * Used as the key when caching methods. diff --git a/spring-messaging/src/main/java/org/springframework/messaging/simp/annotation/support/SimpAnnotationMethodMessageHandler.java b/spring-messaging/src/main/java/org/springframework/messaging/simp/annotation/support/SimpAnnotationMethodMessageHandler.java index fe9f5b2c10d..0ef7a6dba44 100644 --- a/spring-messaging/src/main/java/org/springframework/messaging/simp/annotation/support/SimpAnnotationMethodMessageHandler.java +++ b/spring-messaging/src/main/java/org/springframework/messaging/simp/annotation/support/SimpAnnotationMethodMessageHandler.java @@ -122,11 +122,11 @@ public class SimpAnnotationMethodMessageHandler extends AbstractMethodMessageHan this.messageConverter = new CompositeMessageConverter(converters); } + /** - * Configure a {@link MessageConverter} to use to convert the payload of a message - * from serialize form with a specific MIME type to an Object matching the target - * method parameter. The converter is also used when sending message to the message - * broker. + * Configure a {@link MessageConverter} to use to convert the payload of a message from + * its serialized form with a specific MIME type to an Object matching the target method + * parameter. The converter is also used when sending a message to the message broker. * @see CompositeMessageConverter */ public void setMessageConverter(MessageConverter converter) {