diff --git a/spring-context/src/main/java/org/springframework/jmx/support/WebSphereMBeanServerFactoryBean.java b/spring-context/src/main/java/org/springframework/jmx/support/WebSphereMBeanServerFactoryBean.java index 6ef7d71678..f5625ea055 100644 --- a/spring-context/src/main/java/org/springframework/jmx/support/WebSphereMBeanServerFactoryBean.java +++ b/spring-context/src/main/java/org/springframework/jmx/support/WebSphereMBeanServerFactoryBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2017 the original author or authors. + * Copyright 2002-2019 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. @@ -31,12 +31,14 @@ import org.springframework.lang.Nullable; * available on WebSphere 5.1 and higher. * *
Exposes the {@code MBeanServer} for bean references. - * This FactoryBean is a direct alternative to {@link MBeanServerFactoryBean}, - * which uses standard JMX 1.2 API to access the platform's MBeanServer. + * + *
This {@code FactoryBean} is a direct alternative to {@link MBeanServerFactoryBean}, + * which uses standard JMX 1.2 API to access the platform's {@link MBeanServer}. * *
See the javadocs for WebSphere's - * {@code AdminServiceFactory} - * and {@code MBeanFactory}. + * {@code AdminServiceFactory} + * and + * {@code MBeanFactory}. * * @author Juergen Hoeller * @author Rob Harrop diff --git a/spring-tx/src/main/java/org/springframework/transaction/interceptor/TransactionProxyFactoryBean.java b/spring-tx/src/main/java/org/springframework/transaction/interceptor/TransactionProxyFactoryBean.java index e6ebbe1441..56e5cef3d8 100644 --- a/spring-tx/src/main/java/org/springframework/transaction/interceptor/TransactionProxyFactoryBean.java +++ b/spring-tx/src/main/java/org/springframework/transaction/interceptor/TransactionProxyFactoryBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2018 the original author or authors. + * Copyright 2002-2019 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. @@ -39,10 +39,10 @@ import org.springframework.transaction.PlatformTransactionManager; * typical case of declarative transaction demarcation: namely, wrapping a singleton * target object with a transactional proxy, proxying all the interfaces that the target * implements. However, in Spring versions 2.0 and beyond, the functionality provided here - * is superseded by the more convenient {@code tx:} XML namespace. See the declarative transaction management section of the - * Spring reference documentation to understand the modern options for managing - * transactions in Spring applications. For these reasons, users should favor of + * is superseded by the more convenient {@code tx:} XML namespace. See the + * declarative transaction management + * section of the Spring reference documentation to understand modern options for managing + * transactions in Spring applications. For these reasons, users should favor * the {@code tx:} XML namespace as well as * the @{@link org.springframework.transaction.annotation.Transactional Transactional} * and @{@link org.springframework.transaction.annotation.EnableTransactionManagement