Fix typos
See gh-2019
This commit is contained in:
@@ -38,7 +38,7 @@ public interface MessageSourceAware extends Aware {
|
||||
* <p>Invoked after population of normal bean properties but before an init
|
||||
* callback like InitializingBean's afterPropertiesSet or a custom init-method.
|
||||
* Invoked before ApplicationContextAware's setApplicationContext.
|
||||
* @param messageSource message sourceto be used by this object
|
||||
* @param messageSource message source to be used by this object
|
||||
*/
|
||||
void setMessageSource(MessageSource messageSource);
|
||||
|
||||
|
||||
@@ -138,7 +138,7 @@ import org.springframework.core.io.support.PropertySourceFactory;
|
||||
* last.
|
||||
*
|
||||
* <p>In certain situations, it may not be possible or practical to tightly control
|
||||
* property source ordering when using {@code @ProperySource} annotations. For example,
|
||||
* property source ordering when using {@code @PropertySource} annotations. For example,
|
||||
* if the {@code @Configuration} classes above were registered via component-scanning,
|
||||
* the ordering is difficult to predict. In such cases - and if overriding is important -
|
||||
* it is recommended that the user fall back to using the programmatic PropertySource API.
|
||||
|
||||
@@ -183,7 +183,7 @@ public abstract class AbstractSlsbInvokerInterceptor extends JndiObjectLocator
|
||||
|
||||
|
||||
/**
|
||||
* Prepares the thread context if necessar, and delegates to
|
||||
* Prepares the thread context if necessary, and delegates to
|
||||
* {@link #invokeInContext}.
|
||||
*/
|
||||
@Override
|
||||
|
||||
@@ -23,7 +23,7 @@ import javax.management.ObjectName;
|
||||
* accessed by application developers during application runtime.
|
||||
*
|
||||
* <p>This interface should be used to export application resources to JMX using Spring's
|
||||
* management interface generation capabilties and, optionally, it's {@link ObjectName}
|
||||
* management interface generation capabilities and, optionally, it's {@link ObjectName}
|
||||
* generation capabilities.
|
||||
*
|
||||
* @author Rob Harrop
|
||||
|
||||
@@ -509,7 +509,7 @@ public class MBeanExporter extends MBeanRegistrationSupport implements MBeanExpo
|
||||
/**
|
||||
* Register the defined beans with the {@link MBeanServer}.
|
||||
* <p>Each bean is exposed to the {@code MBeanServer} via a
|
||||
* {@code ModelMBean}. The actual implemetation of the
|
||||
* {@code ModelMBean}. The actual implementation of the
|
||||
* {@code ModelMBean} interface used depends on the implementation of
|
||||
* the {@code ModelMBeanProvider} interface that is configured. By
|
||||
* default the {@code RequiredModelMBean} class that is supplied with
|
||||
|
||||
@@ -84,7 +84,7 @@ public class MethodNameBasedMBeanInfoAssembler extends AbstractConfigurableMBean
|
||||
* The property key should match the bean key and the property value should match
|
||||
* the list of method names. When searching for method names for a bean, Spring
|
||||
* will check these mappings first.
|
||||
* @param mappings the mappins of bean keys to method names
|
||||
* @param mappings the mappings of bean keys to method names
|
||||
*/
|
||||
public void setMethodMappings(Properties mappings) {
|
||||
this.methodMappings = new HashMap<>();
|
||||
|
||||
@@ -27,7 +27,7 @@ import javax.management.Notification;
|
||||
* implementing the {@link NotificationPublisherAware} interface. After a particular
|
||||
* managed resource instance is registered with the {@link javax.management.MBeanServer},
|
||||
* Spring will inject a {@code NotificationPublisher} instance into it if that
|
||||
* resource implements the {@link NotificationPublisherAware} inteface.
|
||||
* resource implements the {@link NotificationPublisherAware} interface.
|
||||
*
|
||||
* <p>Each managed resource instance will have a distinct instance of a
|
||||
* {@code NotificationPublisher} implementation. This instance will keep
|
||||
|
||||
@@ -103,7 +103,7 @@ public abstract class JndiObjectLocator extends JndiLocatorSupport implements In
|
||||
* Perform the actual JNDI lookup for this locator's target resource.
|
||||
* @return the located target object
|
||||
* @throws NamingException if the JNDI lookup failed or if the
|
||||
* located JNDI object is not assigable to the expected type
|
||||
* located JNDI object is not assignable to the expected type
|
||||
* @see #setJndiName
|
||||
* @see #setExpectedType
|
||||
* @see #lookup(String, Class)
|
||||
|
||||
Reference in New Issue
Block a user