Polishing
This commit is contained in:
parent
7585be85f3
commit
058714b03a
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2013 the original author or authors.
|
||||
* Copyright 2002-2015 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.
|
||||
|
@ -394,6 +394,8 @@ public class ResourceBundleMessageSource extends AbstractMessageSource implement
|
|||
@Override
|
||||
public ResourceBundle newBundle(String baseName, Locale locale, String format, ClassLoader loader, boolean reload)
|
||||
throws IllegalAccessException, InstantiationException, IOException {
|
||||
|
||||
// Special handling of default encoding
|
||||
if (format.equals("java.properties")) {
|
||||
String bundleName = toBundleName(baseName, locale);
|
||||
final String resourceName = toResourceName(bundleName, "properties");
|
||||
|
@ -441,6 +443,7 @@ public class ResourceBundleMessageSource extends AbstractMessageSource implement
|
|||
}
|
||||
}
|
||||
else {
|
||||
// Delegate handling of "java.class" format to standard Control
|
||||
return super.newBundle(baseName, locale, format, loader, reload);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -45,8 +45,8 @@ public class AlternativeJdkIdGenerator implements IdGenerator {
|
|||
}
|
||||
|
||||
|
||||
@Override
|
||||
public UUID generateId() {
|
||||
|
||||
byte[] randomBytes = new byte[16];
|
||||
this.random.nextBytes(randomBytes);
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public class JdkIdGenerator implements IdGenerator {
|
||||
|
||||
|
||||
@Override
|
||||
public UUID generateId() {
|
||||
return UUID.randomUUID();
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2014 the original author or authors.
|
||||
* Copyright 2002-2015 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.
|
||||
|
@ -42,23 +42,23 @@ public abstract class AbstractMethodArgumentResolutionException extends Messagin
|
|||
|
||||
/**
|
||||
* Create a new instance providing the invalid {@code MethodParameter} and
|
||||
* a prepared description. Sub-classes should prepend the description with
|
||||
* a prepared description. Subclasses should prepend the description with
|
||||
* the help of {@link #getMethodParamMessage(org.springframework.core.MethodParameter)}.
|
||||
*/
|
||||
protected AbstractMethodArgumentResolutionException(Message<?> message,
|
||||
MethodParameter parameter, String description) {
|
||||
|
||||
protected AbstractMethodArgumentResolutionException(Message<?> message, MethodParameter param, String description) {
|
||||
super(message, description);
|
||||
this.parameter = parameter;
|
||||
this.parameter = param;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return the MethodParameter that was rejected.
|
||||
*/
|
||||
public MethodParameter getMethodParameter() {
|
||||
public final MethodParameter getMethodParameter() {
|
||||
return this.parameter;
|
||||
}
|
||||
|
||||
|
||||
protected static String getMethodParamMessage(MethodParameter param) {
|
||||
return new StringBuilder("Could not resolve method parameter at index ")
|
||||
.append(param.getParameterIndex()).append(" in method: ")
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2014 the original author or authors.
|
||||
* Copyright 2002-2015 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.
|
||||
|
@ -49,22 +49,21 @@ public class MethodArgumentNotValidException extends AbstractMethodArgumentResol
|
|||
public MethodArgumentNotValidException(Message<?> message, MethodParameter parameter,
|
||||
BindingResult bindingResult) {
|
||||
|
||||
super(message, parameter, getMethodParamMessage(parameter) +
|
||||
getValidationErrorMessage(parameter, bindingResult));
|
||||
|
||||
super(message, parameter, getMethodParamMessage(parameter) + getValidationErrorMessage(bindingResult));
|
||||
this.bindingResult = bindingResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return the BindingResult if the failure is validation-related or {@code null}.
|
||||
* Return the BindingResult if the failure is validation-related,
|
||||
* or {@code null} if none.
|
||||
*/
|
||||
public BindingResult getBindingResult() {
|
||||
public final BindingResult getBindingResult() {
|
||||
return this.bindingResult;
|
||||
}
|
||||
|
||||
|
||||
private static String getValidationErrorMessage(MethodParameter parameter, BindingResult bindingResult) {
|
||||
private static String getValidationErrorMessage(BindingResult bindingResult) {
|
||||
if (bindingResult != null) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(", with ").append(bindingResult.getErrorCount()).append(" error(s): ");
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2014 the original author or authors.
|
||||
* Copyright 2002-2015 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.
|
||||
|
@ -29,11 +29,11 @@ import org.springframework.messaging.Message;
|
|||
@SuppressWarnings("serial")
|
||||
public class MethodArgumentTypeMismatchException extends AbstractMethodArgumentResolutionException {
|
||||
|
||||
|
||||
/**
|
||||
* Create a new instance with the invalid {@code MethodParameter}.
|
||||
*/
|
||||
public MethodArgumentTypeMismatchException(Message<?> message, MethodParameter parameter, String description) {
|
||||
super(message, parameter, getMethodParamMessage(parameter) + description);
|
||||
public MethodArgumentTypeMismatchException(Message<?> message, MethodParameter param, String description) {
|
||||
super(message, param, getMethodParamMessage(param) + description);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2013 the original author or authors.
|
||||
* Copyright 2002-2015 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.
|
||||
|
@ -20,8 +20,8 @@ import org.springframework.core.MethodParameter;
|
|||
import org.springframework.messaging.Message;
|
||||
|
||||
/**
|
||||
* Strategy interface for resolving method parameters into argument values in
|
||||
* the context of a given {@link Message}.
|
||||
* Strategy interface for resolving method parameters into argument values
|
||||
* in the context of a given {@link Message}.
|
||||
*
|
||||
* @author Rossen Stoyanchev
|
||||
* @since 4.0
|
||||
|
@ -39,12 +39,12 @@ public interface HandlerMethodArgumentResolver {
|
|||
|
||||
/**
|
||||
* Resolves a method parameter into an argument value from a given message.
|
||||
* @param parameter the method parameter to resolve. This parameter must
|
||||
* have previously been passed to
|
||||
* @param parameter the method parameter to resolve.
|
||||
* This parameter must have previously been passed to
|
||||
* {@link #supportsParameter(org.springframework.core.MethodParameter)}
|
||||
* and it must have returned {@code true}
|
||||
* which must have returned {@code true}.
|
||||
* @param message the currently processed message
|
||||
* @return the resolved argument value, or {@code null}.
|
||||
* @return the resolved argument value, or {@code null}
|
||||
* @throws Exception in case of errors with the preparation of argument values
|
||||
*/
|
||||
Object resolveArgument(MethodParameter parameter, Message<?> message) throws Exception;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2014 the original author or authors.
|
||||
* Copyright 2002-2015 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.
|
||||
|
@ -68,7 +68,6 @@ public class SimpleBrokerMessageHandler extends AbstractBrokerMessageHandler {
|
|||
|
||||
/**
|
||||
* Configure a custom SubscriptionRegistry to use for storing subscriptions.
|
||||
*
|
||||
* <p><strong>Note</strong> that when a custom PathMatcher is configured via
|
||||
* {@link #setPathMatcher}, if the custom registry is not an instance of
|
||||
* {@link DefaultSubscriptionRegistry}, the provided PathMatcher is not used
|
||||
|
@ -102,9 +101,8 @@ public class SimpleBrokerMessageHandler extends AbstractBrokerMessageHandler {
|
|||
}
|
||||
|
||||
/**
|
||||
* Configure a {@link MessageHeaderInitializer} to apply to the headers of all
|
||||
* messages sent to the client outbound channel.
|
||||
*
|
||||
* Configure a {@link MessageHeaderInitializer} to apply to the headers
|
||||
* of all messages sent to the client outbound channel.
|
||||
* <p>By default this property is not set.
|
||||
*/
|
||||
public void setHeaderInitializer(MessageHeaderInitializer headerInitializer) {
|
||||
|
@ -112,7 +110,7 @@ public class SimpleBrokerMessageHandler extends AbstractBrokerMessageHandler {
|
|||
}
|
||||
|
||||
/**
|
||||
* @return the configured header initializer.
|
||||
* Return the configured header initializer.
|
||||
*/
|
||||
public MessageHeaderInitializer getHeaderInitializer() {
|
||||
return this.headerInitializer;
|
||||
|
@ -131,7 +129,6 @@ public class SimpleBrokerMessageHandler extends AbstractBrokerMessageHandler {
|
|||
|
||||
@Override
|
||||
protected void handleMessageInternal(Message<?> message) {
|
||||
|
||||
MessageHeaders headers = message.getHeaders();
|
||||
SimpMessageType messageType = SimpMessageHeaderAccessor.getMessageType(headers);
|
||||
String destination = SimpMessageHeaderAccessor.getDestination(headers);
|
||||
|
@ -197,7 +194,7 @@ public class SimpleBrokerMessageHandler extends AbstractBrokerMessageHandler {
|
|||
|
||||
protected void sendMessageToSubscribers(String destination, Message<?> message) {
|
||||
MultiValueMap<String,String> subscriptions = this.subscriptionRegistry.findSubscriptions(message);
|
||||
if ((subscriptions.size() > 0) && logger.isDebugEnabled()) {
|
||||
if (!subscriptions.isEmpty() && logger.isDebugEnabled()) {
|
||||
logger.debug("Broadcasting to " + subscriptions.size() + " sessions.");
|
||||
}
|
||||
for (String sessionId : subscriptions.keySet()) {
|
||||
|
|
|
@ -272,7 +272,7 @@ public class Jackson2ObjectMapperBuilder {
|
|||
* @see com.fasterxml.jackson.databind.ObjectMapper#addMixInAnnotations(Class, Class)
|
||||
*/
|
||||
public Jackson2ObjectMapperBuilder mixIn(Class<?> target, Class<?> mixinSource) {
|
||||
if (mixIns != null) {
|
||||
if (mixinSource != null) {
|
||||
this.mixIns.put(target, mixinSource);
|
||||
}
|
||||
return this;
|
||||
|
|
|
@ -18,9 +18,6 @@ package org.springframework.web.servlet.mvc.method.annotation;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
import org.springframework.core.MethodParameter;
|
||||
import org.springframework.http.MediaType;
|
||||
import org.springframework.http.converter.HttpMessageConverter;
|
||||
|
@ -37,8 +34,6 @@ import org.springframework.web.method.ControllerAdviceBean;
|
|||
*/
|
||||
class ResponseBodyAdviceChain {
|
||||
|
||||
private static final Log logger = LogFactory.getLog(ResponseBodyAdviceChain.class);
|
||||
|
||||
private final List<Object> advice;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue