当前位置: 首页>>代码示例>>Java>>正文


Java StringUtils.uncapitalize方法代码示例

本文整理汇总了Java中org.springframework.util.StringUtils.uncapitalize方法的典型用法代码示例。如果您正苦于以下问题:Java StringUtils.uncapitalize方法的具体用法?Java StringUtils.uncapitalize怎么用?Java StringUtils.uncapitalize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.util.StringUtils的用法示例。


在下文中一共展示了StringUtils.uncapitalize方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getBeanName

import org.springframework.util.StringUtils; //导入方法依赖的package包/类
private static String getBeanName(AnnotationMetadata annotationMetadata, Map<String, Object> attributes) {
    // name & value are aliases
    String beanName = (String) attributes.get("value");
    if (!StringUtils.isEmpty(beanName)) {
        return beanName;
    } else {
        // generate bean name from class name
        String shortName = ClassUtils.getShortName(annotationMetadata.getClassName());
        return StringUtils.uncapitalize(shortName);
    }
}
 
开发者ID:xm-online,项目名称:xm-commons,代码行数:12,代码来源:LepServicesRegistrar.java

示例2: BasicMongoPersistentEntity

import org.springframework.util.StringUtils; //导入方法依赖的package包/类
public BasicMongoPersistentEntity(TypeInformation<T> info) {
	super(info);

	collection = StringUtils.uncapitalize(info.getType().getSimpleName());

	Document document = this.findAnnotation(Document.class);

	if (document != null && !document.name().isEmpty()) {
		collection = document.name();
	}
}
 
开发者ID:wesley-ramos,项目名称:spring-multitenancy,代码行数:12,代码来源:BasicMongoPersistentEntity.java

示例3: getCollectionResourceRelFor

import org.springframework.util.StringUtils; //导入方法依赖的package包/类
@Override
public String getCollectionResourceRelFor(Class<?> type) {
	return StringUtils.uncapitalize(type.getSimpleName());
}
 
开发者ID:olivergierke,项目名称:sos,代码行数:5,代码来源:EventRelProvider.java

示例4: extractTableNameFromClass

import org.springframework.util.StringUtils; //导入方法依赖的package包/类
protected String extractTableNameFromClass(Class<?> entityClass) {
  return StringUtils.uncapitalize(entityClass.getSimpleName());
}
 
开发者ID:saturnism,项目名称:spring-data-spanner,代码行数:4,代码来源:BasicSpannerPersistentEntity.java

示例5: getInterceptorNameSuffix

import org.springframework.util.StringUtils; //导入方法依赖的package包/类
protected String getInterceptorNameSuffix(BeanDefinition interceptorDefinition) {
	return StringUtils.uncapitalize(ClassUtils.getShortName(interceptorDefinition.getBeanClassName()));
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:4,代码来源:AbstractInterceptorDrivenBeanDefinitionDecorator.java

示例6: should_generate_the_collection_name_using_the_class_name

import org.springframework.util.StringUtils; //导入方法依赖的package包/类
@Test public void
should_generate_the_collection_name_using_the_class_name(){
	
	ClassTypeInformation<?> info = ClassTypeInformation.from(ClassWithoutTheDocumentAnnotation.class);
	TypeInformation<?> type = info.specialize(info);
	
	BasicMongoPersistentEntity<?> persistentEntity = new BasicMongoPersistentEntity<>(type);
	
	String expected = StringUtils.uncapitalize(ClassWithoutTheDocumentAnnotation.class.getSimpleName());
	String collectionName = persistentEntity.getCollection();
	
	assertEquals("Failed to Generate Collection Name", expected, collectionName);
}
 
开发者ID:wesley-ramos,项目名称:spring-multitenancy,代码行数:14,代码来源:BasicMongoPersistentEntityTest.java


注:本文中的org.springframework.util.StringUtils.uncapitalize方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。