Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the shortest Spring Framework class name (package included)? [closed]

Tags:

spring

naming

Many people have found humor in the deprecation of org.springframework.aop.framework.AbstractSingletonProxyFactoryBean.

This led me to wonder: what is the shortest class name, including the package in the Spring Framework 3.1.x ecosystem (listed here: http://www.springsource.org/projects)?

like image 763
noahlz Avatar asked Sep 08 '12 12:09

noahlz


People also ask

What is Spring Framework?

The Spring Framework provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

What is support class in Spring Boot?

Support classes for Spring's scripting package. This package contains the Spring TestContext Framework which provides annotation-driven unit and integration testing support that is agnostic of the actual testing framework in use. Test event support classes for the Spring TestContext Framework.

Is abstractsingletonproxyfactorybean the longest class name in spring API?

Eyeballing http://static.springsource.org/spring/docs/3.0.x/javadoc-api/which is the main Spring Framework API, there are a few 4 letter words including Bean. But I don't think that AbstractSingletonProxyFactoryBean is the longest class name in the Spring API.

What are the different types of spring modules?

These modules are Spring Core, Spring AOP, Spring Web MVC, Spring DAO, Spring ORM, Spring context, and Spring Web flow. These modules provide different platforms to develop different enterprise applications; for example, you can use Spring Web MVC module for developing MVC-based applications.


1 Answers

Eyeballing http://static.springsource.org/spring/docs/3.0.x/javadoc-api/ which is the main Spring Framework API, there are a few 4 letter words including Bean.

But I don't think that AbstractSingletonProxyFactoryBean is the longest class name in the Spring API. Here are some competitors:

AbstractSingletonProxyFactoryBean
SmartInstantiationAwareBeanPostProcessor 
SingletonMetadataAwareAspectInstanceFactory 
JodaDateTimeFormatAnnotationFormatterFactory
TransactionAwarePersistenceManagerFactoryProxy  
JdbcUpdateAffectedIncorrectNumberOfRowsException 
like image 117
sourcedelica Avatar answered Sep 29 '22 04:09

sourcedelica