Interface and Description |
---|
org.springframework.jdbc.core.simple.SimpleJdbcOperations
since Spring 3.1 in favor of
JdbcOperations and
NamedParameterJdbcOperations . The JdbcTemplate and
NamedParameterJdbcTemplate now provide all the functionality of the SimpleJdbcTemplate. |
Class and Description |
---|
org.springframework.web.servlet.view.document.AbstractJExcelView
as of Spring 4.0, since JExcelAPI is an abandoned project
(no release since 2009, with serious bugs remaining)
|
org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter
in Spring 3.2 in favor of
RequestMappingHandlerAdapter |
org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerExceptionResolver
as of Spring 3.2, in favor of
ExceptionHandlerExceptionResolver |
org.springframework.test.AssertThrows
favor use of JUnit 4's
@Test(expected=...) support |
org.springframework.beans.factory.config.BeanReferenceFactoryBean
as of Spring 3.2, in favor of using regular bean name aliases
(which support placeholder parsing since Spring 2.5)
|
org.springframework.remoting.caucho.BurlapClientInterceptor
as of Spring 4.0, since Burlap hasn't evolved in years
and is effectively retired (in contrast to its sibling Hessian)
|
org.springframework.remoting.caucho.BurlapExporter
as of Spring 4.0, since Burlap hasn't evolved in years
and is effectively retired (in contrast to its sibling Hessian)
|
org.springframework.remoting.caucho.BurlapProxyFactoryBean
as of Spring 4.0, since Burlap hasn't evolved in years
and is effectively retired (in contrast to its sibling Hessian)
|
org.springframework.remoting.caucho.BurlapServiceExporter
as of Spring 4.0, since Burlap hasn't evolved in years
and is effectively retired (in contrast to its sibling Hessian)
|
org.springframework.beans.factory.config.CommonsLogFactoryBean
as of Spring 3.2, in favor of a bean definition that points
to the bean class "org.apache.commons.logging.LogFactory" and the factory
method "getLog", passing in the log name as constructor argument
|
org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping
in Spring 3.2 in favor of
RequestMappingHandlerMapping |
org.springframework.cache.interceptor.DefaultKeyGenerator
as of Spring 4.0, in favor of
SimpleKeyGenerator
or custom KeyGenerator implementations based on hash codes |
org.springframework.orm.hibernate3.HibernateInterceptor
as of Spring 3.2.7, in favor of either HibernateTemplate usage or
native Hibernate API usage within transactions, in combination with a general
PersistenceExceptionTranslationPostProcessor .
Note: This class does not have an equivalent replacement in orm.hibernate4 .
If you desperately need a scoped Session bound through AOP, consider the newly
introduced OpenSessionInterceptor . |
org.springframework.http.converter.json.JacksonObjectMapperFactoryBean
Please migrate to
Jackson2ObjectMapperFactoryBean for Jackson 2.x. |
org.springframework.jca.work.jboss.JBossWorkManagerTaskExecutor
as of Spring 4.0, since there are no fully supported versions
of JBoss that this class works with anymore
|
org.springframework.jca.work.jboss.JBossWorkManagerUtils
as of Spring 4.0, since there are no fully supported versions
of JBoss that this class works with anymore
|
org.springframework.format.datetime.joda.JodaTimeConverters.DateTimeToDateMidnightConverter |
org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
Please migrate to
MappingJackson2HttpMessageConverter for Jackson 2.x. |
org.springframework.web.servlet.view.json.MappingJacksonJsonView
Please migrate to
MappingJackson2JsonView for Jackson 2.x. |
org.springframework.jms.support.converter.MappingJacksonMessageConverter
Please migrate to
MappingJackson2MessageConverter for Jackson 2.x. |
org.springframework.jdbc.support.lob.OracleLobHandler
in favor of
DefaultLobHandler for the Oracle 10g driver and
higher. Consider using the 10g/11g driver even against an Oracle 9i database!
DefaultLobHandler.setCreateTemporaryLob(boolean) is the direct equivalent of this
OracleLobHandler's implementation strategy, just using standard JDBC 4.0 API.
That said, in most cases, regular DefaultLobHandler setup will work fine as well. |
org.springframework.web.servlet.mvc.annotation.ServletAnnotationMappingUtils
in 3.2 together with
DefaultAnnotationHandlerMapping ,
AnnotationMethodHandlerAdapter , and AnnotationMethodHandlerExceptionResolver . |
org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer
in Spring 3.1 in favor of
PropertySourcesPlaceholderConfigurer
in conjunction with StandardServletEnvironment . |
org.springframework.remoting.caucho.SimpleBurlapServiceExporter
as of Spring 4.0, since Burlap hasn't evolved in years
and is effectively retired (in contrast to its sibling Hessian)
|
org.springframework.jdbc.core.simple.SimpleJdbcDaoSupport
since Spring 3.1 in favor of
JdbcDaoSupport and
NamedParameterJdbcDaoSupport . The JdbcTemplate and
NamedParameterJdbcTemplate now provide all the functionality of the SimpleJdbcTemplate. |
org.springframework.jdbc.core.simple.SimpleJdbcTemplate
since Spring 3.1 in favor of
JdbcTemplate and
NamedParameterJdbcTemplate . The JdbcTemplate and
NamedParameterJdbcTemplate now provide all the functionality of the SimpleJdbcTemplate. |
org.springframework.http.converter.xml.XmlAwareFormHttpMessageConverter
in favor of
AllEncompassingFormHttpMessageConverter |
org.springframework.beans.factory.xml.XmlBeanFactory
as of Spring 3.1 in favor of
DefaultListableBeanFactory and
XmlBeanDefinitionReader |
Enum Constant and Description |
---|
org.springframework.http.HttpStatus.DESTINATION_LOCKED |
org.springframework.http.HttpStatus.INSUFFICIENT_SPACE_ON_RESOURCE |
org.springframework.http.HttpStatus.METHOD_FAILURE |
org.springframework.http.HttpStatus.MOVED_TEMPORARILY
In favor of
HttpStatus.FOUND which will be returned from HttpStatus.valueOf(302) |