@ -165,12 +165,12 @@ public class AuditingHandler implements InitializingBean {
@@ -165,12 +165,12 @@ public class AuditingHandler implements InitializingBean {
LOGGER.debug("Touched {} - Last modification at {} by {}",target,defaultedNow,defaultedAuditor);
logger.debug("Touched {} - Last modification at {} by {}",target,defaultedNow,defaultedAuditor);
}
returnit.getBean();
@ -229,7 +229,7 @@ public class AuditingHandler implements InitializingBean {
@@ -229,7 +229,7 @@ public class AuditingHandler implements InitializingBean {
publicvoidafterPropertiesSet(){
if(!auditorAware.isPresent()){
LOGGER.debug("No AuditorAware set! Auditing will not be applied!");
logger.debug("No AuditorAware set! Auditing will not be applied!");
privatestaticfinalStringREAD_CONVERTER_NOT_SIMPLE="Registering converter from %s to %s as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation.";
privatestaticfinalStringWRITE_CONVERTER_NOT_SIMPLE="Registering converter from %s to %s as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation.";
privatestaticfinalStringNOT_A_CONVERTER="Converter %s is neither a Spring Converter, GenericConverter or ConverterFactory!";
@ -255,8 +255,8 @@ public class CustomConversions {
@@ -255,8 +255,8 @@ public class CustomConversions {
privatestaticfinalStringCLASS_LOADING_ERROR="%s - Could not load type %s using class loader %s.";
privatestaticfinalStringMULTI_STORE_DROPPED="Spring Data %s - Could not safely identify store assignment for repository candidate %s. If you want this repository to be a %s repository,";
@ -307,7 +307,7 @@ public abstract class RepositoryConfigurationExtensionSupport implements Reposit
@@ -307,7 +307,7 @@ public abstract class RepositoryConfigurationExtensionSupport implements Reposit
if(types.isEmpty()&&annotations.isEmpty()){
if(!noMultiStoreSupport){
LOGGER.warn("Spring Data {} does not support multi-store setups!",moduleName);
logger.warn("Spring Data {} does not support multi-store setups!",moduleName);
noMultiStoreSupport=true;
returnfalse;
}
@ -345,7 +345,7 @@ public abstract class RepositoryConfigurationExtensionSupport implements Reposit
@@ -345,7 +345,7 @@ public abstract class RepositoryConfigurationExtensionSupport implements Reposit
.concat(".");
}
LOGGER.info(message);
logger.info(message);
returnfalse;
}
@ -388,7 +388,7 @@ public abstract class RepositoryConfigurationExtensionSupport implements Reposit
@@ -388,7 +388,7 @@ public abstract class RepositoryConfigurationExtensionSupport implements Reposit
@ -108,7 +108,7 @@ public abstract class RepositoryFactorySupport implements BeanClassLoaderAware,
@@ -108,7 +108,7 @@ public abstract class RepositoryFactorySupport implements BeanClassLoaderAware,
@ -288,8 +288,8 @@ public abstract class RepositoryFactorySupport implements BeanClassLoaderAware,
@@ -288,8 +288,8 @@ public abstract class RepositoryFactorySupport implements BeanClassLoaderAware,
LOG.debug("Initializing repository instance for {}…",repositoryInterface.getName());
if(logger.isDebugEnabled()){
logger.debug("Initializing repository instance for {}…",repositoryInterface.getName());
}
Assert.notNull(repositoryInterface,"Repository interface must not be null!");
@ -331,8 +331,8 @@ public abstract class RepositoryFactorySupport implements BeanClassLoaderAware,
@@ -331,8 +331,8 @@ public abstract class RepositoryFactorySupport implements BeanClassLoaderAware,
Trepository=(T)result.getProxy(classLoader);
if(LOG.isDebugEnabled()){
LOG.debug("Finished creation of repository instance for {}.",repositoryInterface.getName());
if(logger.isDebugEnabled()){
logger.debug("Finished creation of repository instance for {}.",repositoryInterface.getName());
@ -118,7 +118,7 @@ public class ResourceReaderRepositoryPopulator implements RepositoryPopulator, A
@@ -118,7 +118,7 @@ public class ResourceReaderRepositoryPopulator implements RepositoryPopulator, A
@ -127,7 +127,7 @@ public class ResourceReaderRepositoryPopulator implements RepositoryPopulator, A
@@ -127,7 +127,7 @@ public class ResourceReaderRepositoryPopulator implements RepositoryPopulator, A
if(element!=null){
persist(element,invokerFactory);
}else{
LOGGER.info("Skipping null element found in unmarshal result!");
logger.info("Skipping null element found in unmarshal result!");
}
}
}else{
@ -163,7 +163,7 @@ public class ResourceReaderRepositoryPopulator implements RepositoryPopulator, A
@@ -163,7 +163,7 @@ public class ResourceReaderRepositoryPopulator implements RepositoryPopulator, A
@ -116,7 +116,7 @@ public class ChainedTransactionManager implements PlatformTransactionManager {
@@ -116,7 +116,7 @@ public class ChainedTransactionManager implements PlatformTransactionManager {
@ -161,7 +161,7 @@ public class ChainedTransactionManager implements PlatformTransactionManager {
@@ -161,7 +161,7 @@ public class ChainedTransactionManager implements PlatformTransactionManager {
@ -197,7 +197,7 @@ public class ChainedTransactionManager implements PlatformTransactionManager {
@@ -197,7 +197,7 @@ public class ChainedTransactionManager implements PlatformTransactionManager {
privatestaticfinalStringSUPERFLOUS_QUALIFIER="Found qualified {} parameter, but a unique unqualified {} parameter. Using that one, but you might want to check your controller method configuration!";
privatestaticfinalStringPARAMETER_AMBIGUITY="Discovered multiple parameters of type Pageable but no qualifier annotations to disambiguate!";
@ -151,7 +151,7 @@ public class PagedResourcesAssemblerArgumentResolver implements HandlerMethodArg
@@ -151,7 +151,7 @@ public class PagedResourcesAssemblerArgumentResolver implements HandlerMethodArg