spring CacheManagementConfigUtils 源码

  • 2022-08-08
  • 浏览 (428)

spring CacheManagementConfigUtils 代码

文件路径:/spring-context/src/main/java/org/springframework/cache/config/CacheManagementConfigUtils.java

/*
 * Copyright 2002-2018 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.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.cache.config;

/**
 * Configuration constants for internal sharing across subpackages.
 *
 * @author Juergen Hoeller
 * @since 4.1
 */
public abstract class CacheManagementConfigUtils {

	/**
	 * The name of the cache advisor bean.
	 */
	public static final String CACHE_ADVISOR_BEAN_NAME =
			"org.springframework.cache.config.internalCacheAdvisor";

	/**
	 * The name of the cache aspect bean.
	 */
	public static final String CACHE_ASPECT_BEAN_NAME =
			"org.springframework.cache.config.internalCacheAspect";

	/**
	 * The name of the JCache advisor bean.
	 */
	public static final String JCACHE_ADVISOR_BEAN_NAME =
			"org.springframework.cache.config.internalJCacheAdvisor";

	/**
	 * The name of the JCache advisor bean.
	 */
	public static final String JCACHE_ASPECT_BEAN_NAME =
			"org.springframework.cache.config.internalJCacheAspect";

}

相关信息

spring 源码目录

相关文章

spring AnnotationDrivenCacheBeanDefinitionParser 源码

spring CacheAdviceParser 源码

spring CacheNamespaceHandler 源码

spring package-info 源码

0  赞