Interface and Description |
---|
org.springframework.orm.hibernate3.HibernateCallback
as of Spring 4.3, in favor of Hibernate 4.x/5.x
|
org.springframework.orm.hibernate3.HibernateOperations
as of Spring 4.3, in favor of Hibernate 4.x/5.x
|
org.springframework.web.servlet.mvc.multiaction.MethodNameResolver
as of 4.3, in favor of annotation-driven handler methods
|
org.springframework.messaging.simp.user.UserSessionRegistry
in favor of
SimpUserRegistry in combination with
ApplicationListener listening for
AbstractSubProtocolEvent events. |
org.springframework.web.servlet.view.velocity.VelocityConfig
as of Spring 4.3, in favor of FreeMarker
|
Exceptions and Description |
---|
org.springframework.web.bind.annotation.support.HandlerMethodInvocationException
as of 4.3, in favor of the
HandlerMethod -based MVC infrastructure |
org.springframework.orm.hibernate3.HibernateJdbcException
as of Spring 4.3, in favor of Hibernate 4.x/5.x
|
org.springframework.orm.hibernate3.HibernateObjectRetrievalFailureException
as of Spring 4.3, in favor of Hibernate 4.x/5.x
|
org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException
as of Spring 4.3, in favor of Hibernate 4.x/5.x
|
org.springframework.orm.hibernate3.HibernateQueryException
as of Spring 4.3, in favor of Hibernate 4.x/5.x
|
org.springframework.orm.hibernate3.HibernateSystemException
as of Spring 4.3, in favor of Hibernate 4.x/5.x
|
org.springframework.web.servlet.mvc.multiaction.NoSuchRequestHandlingMethodException
as of 4.3, in favor of annotation-driven handler methods
|
Annotation Type and Description |
---|
org.springframework.test.context.transaction.TransactionConfiguration
As of Spring Framework 4.2, use
@Rollback or
@Commit at the class level and the transactionManager
qualifier in @Transactional . |
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) |
org.springframework.http.HttpStatus.REQUEST_ENTITY_TOO_LARGE
In favor of
HttpStatus.PAYLOAD_TOO_LARGE which will be returned from HttpStatus.valueOf(413) |
org.springframework.http.HttpStatus.REQUEST_URI_TOO_LONG
In favor of
HttpStatus.URI_TOO_LONG which will be returned from HttpStatus.valueOf(414) |
org.springframework.http.HttpStatus.USE_PROXY
due to security concerns regarding in-band configuration of a proxy
|