Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
3814e509
Commit
3814e509
authored
Aug 31, 2016
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish @deprecated javadoc and link to replacements where available
Closes gh-6765
parent
d7206452
Changes
31
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
38 additions
and
32 deletions
+38
-32
InfoEndpoint.java
...g/springframework/boot/actuate/endpoint/InfoEndpoint.java
+1
-1
HornetQAutoConfiguration.java
...t/autoconfigure/jms/hornetq/HornetQAutoConfiguration.java
+1
-1
HornetQConfigurationCustomizer.java
...configure/jms/hornetq/HornetQConfigurationCustomizer.java
+1
-1
HornetQConnectionFactoryConfiguration.java
...re/jms/hornetq/HornetQConnectionFactoryConfiguration.java
+1
-1
HornetQConnectionFactoryFactory.java
...onfigure/jms/hornetq/HornetQConnectionFactoryFactory.java
+1
-1
HornetQEmbeddedConfigurationFactory.java
...gure/jms/hornetq/HornetQEmbeddedConfigurationFactory.java
+1
-1
HornetQEmbeddedServerConfiguration.java
...igure/jms/hornetq/HornetQEmbeddedServerConfiguration.java
+1
-1
HornetQMode.java
...framework/boot/autoconfigure/jms/hornetq/HornetQMode.java
+1
-1
HornetQNoOpBindingRegistry.java
...autoconfigure/jms/hornetq/HornetQNoOpBindingRegistry.java
+1
-1
HornetQProperties.java
...ork/boot/autoconfigure/jms/hornetq/HornetQProperties.java
+1
-1
HornetQXAConnectionFactoryConfiguration.java
.../jms/hornetq/HornetQXAConnectionFactoryConfiguration.java
+1
-1
SpringBootHornetQConnectionFactory.java
...igure/jms/hornetq/SpringBootHornetQConnectionFactory.java
+1
-1
SpringBootHornetQXAConnectionFactory.java
...ure/jms/hornetq/SpringBootHornetQXAConnectionFactory.java
+1
-1
package-info.java
...ramework/boot/autoconfigure/jms/hornetq/package-info.java
+2
-1
package-info.java
...ngframework/boot/autoconfigure/velocity/package-info.java
+3
-1
SpringApplicationContextLoader.java
...ngframework/boot/test/SpringApplicationContextLoader.java
+2
-2
DelegatingFilterProxyRegistrationBean.java
...ntext/embedded/DelegatingFilterProxyRegistrationBean.java
+1
-1
FilterRegistrationBean.java
...amework/boot/context/embedded/FilterRegistrationBean.java
+1
-1
MultipartConfigFactory.java
...amework/boot/context/embedded/MultipartConfigFactory.java
+2
-1
ServletContextInitializer.java
...work/boot/context/embedded/ServletContextInitializer.java
+1
-1
ServletListenerRegistrationBean.java
...oot/context/embedded/ServletListenerRegistrationBean.java
+1
-1
ServletRegistrationBean.java
...mework/boot/context/embedded/ServletRegistrationBean.java
+2
-1
ErrorPageFilter.java
...org/springframework/boot/context/web/ErrorPageFilter.java
+2
-1
OrderedCharacterEncodingFilter.java
...work/boot/context/web/OrderedCharacterEncodingFilter.java
+1
-1
OrderedHiddenHttpMethodFilter.java
...ework/boot/context/web/OrderedHiddenHttpMethodFilter.java
+1
-1
OrderedHttpPutFormContentFilter.java
...ork/boot/context/web/OrderedHttpPutFormContentFilter.java
+1
-1
OrderedRequestContextFilter.java
...amework/boot/context/web/OrderedRequestContextFilter.java
+1
-1
ServerPortInfoApplicationContextInitializer.java
...text/web/ServerPortInfoApplicationContextInitializer.java
+1
-1
ServletContextApplicationContextInitializer.java
...text/web/ServletContextApplicationContextInitializer.java
+1
-1
SpringBootServletInitializer.java
...mework/boot/context/web/SpringBootServletInitializer.java
+1
-1
EntityScan.java
...ain/java/org/springframework/boot/orm/jpa/EntityScan.java
+1
-1
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/InfoEndpoint.java
View file @
3814e509
...
@@ -54,7 +54,7 @@ public class InfoEndpoint extends AbstractEndpoint<Map<String, Object>> {
...
@@ -54,7 +54,7 @@ public class InfoEndpoint extends AbstractEndpoint<Map<String, Object>> {
* Constructor provided for backward compatibility.
* Constructor provided for backward compatibility.
* @param info a map (which is added to the info)
* @param info a map (which is added to the info)
* @param infoContributors the info contributors to use
* @param infoContributors the info contributors to use
* @deprecated as of 1.4 in favor of
the constructor without the map
* @deprecated as of 1.4 in favor of
{@link #InfoEndpoint(List)}
*/
*/
@Deprecated
@Deprecated
public
InfoEndpoint
(
Map
<
String
,
Object
>
info
,
InfoContributor
...
infoContributors
)
{
public
InfoEndpoint
(
Map
<
String
,
Object
>
info
,
InfoContributor
...
infoContributors
)
{
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQAutoConfiguration.java
View file @
3814e509
...
@@ -41,7 +41,7 @@ import org.springframework.context.annotation.Import;
...
@@ -41,7 +41,7 @@ import org.springframework.context.annotation.Import;
* @author Phillip Webb
* @author Phillip Webb
* @since 1.1.0
* @since 1.1.0
* @see HornetQProperties
* @see HornetQProperties
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Configuration
@Configuration
@AutoConfigureBefore
(
JmsAutoConfiguration
.
class
)
@AutoConfigureBefore
(
JmsAutoConfiguration
.
class
)
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQConfigurationCustomizer.java
View file @
3814e509
...
@@ -27,7 +27,7 @@ import org.hornetq.jms.server.embedded.EmbeddedJMS;
...
@@ -27,7 +27,7 @@ import org.hornetq.jms.server.embedded.EmbeddedJMS;
* @author Phillip Webb
* @author Phillip Webb
* @since 1.1.0
* @since 1.1.0
* @see HornetQAutoConfiguration
* @see HornetQAutoConfiguration
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Deprecated
@Deprecated
public
interface
HornetQConfigurationCustomizer
{
public
interface
HornetQConfigurationCustomizer
{
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQConnectionFactoryConfiguration.java
View file @
3814e509
...
@@ -30,7 +30,7 @@ import org.springframework.context.annotation.Configuration;
...
@@ -30,7 +30,7 @@ import org.springframework.context.annotation.Configuration;
*
*
* @author Phillip Webb
* @author Phillip Webb
* @since 1.2.0
* @since 1.2.0
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Configuration
@Configuration
@ConditionalOnMissingBean
(
ConnectionFactory
.
class
)
@ConditionalOnMissingBean
(
ConnectionFactory
.
class
)
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQConnectionFactoryFactory.java
View file @
3814e509
...
@@ -40,7 +40,7 @@ import org.springframework.util.ClassUtils;
...
@@ -40,7 +40,7 @@ import org.springframework.util.ClassUtils;
* @author Phillip Webb
* @author Phillip Webb
* @author Stephane Nicoll
* @author Stephane Nicoll
* @since 1.2.0
* @since 1.2.0
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Deprecated
@Deprecated
class
HornetQConnectionFactoryFactory
{
class
HornetQConnectionFactoryFactory
{
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQEmbeddedConfigurationFactory.java
View file @
3814e509
...
@@ -34,7 +34,7 @@ import org.springframework.boot.autoconfigure.jms.hornetq.HornetQProperties.Embe
...
@@ -34,7 +34,7 @@ import org.springframework.boot.autoconfigure.jms.hornetq.HornetQProperties.Embe
* @author Stephane Nicoll
* @author Stephane Nicoll
* @author Phillip Webb
* @author Phillip Webb
* @since 1.1.0
* @since 1.1.0
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Deprecated
@Deprecated
class
HornetQEmbeddedConfigurationFactory
{
class
HornetQEmbeddedConfigurationFactory
{
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQEmbeddedServerConfiguration.java
View file @
3814e509
...
@@ -41,7 +41,7 @@ import org.springframework.core.annotation.AnnotationAwareOrderComparator;
...
@@ -41,7 +41,7 @@ import org.springframework.core.annotation.AnnotationAwareOrderComparator;
* @author Phillip Webb
* @author Phillip Webb
* @author Stephane Nicoll
* @author Stephane Nicoll
* @since 1.2.0
* @since 1.2.0
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Configuration
@Configuration
@ConditionalOnClass
(
name
=
HornetQConnectionFactoryFactory
.
EMBEDDED_JMS_CLASS
)
@ConditionalOnClass
(
name
=
HornetQConnectionFactoryFactory
.
EMBEDDED_JMS_CLASS
)
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQMode.java
View file @
3814e509
...
@@ -21,7 +21,7 @@ package org.springframework.boot.autoconfigure.jms.hornetq;
...
@@ -21,7 +21,7 @@ package org.springframework.boot.autoconfigure.jms.hornetq;
*
*
* @author Stephane Nicoll
* @author Stephane Nicoll
* @since 1.1.0
* @since 1.1.0
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Deprecated
@Deprecated
public
enum
HornetQMode
{
public
enum
HornetQMode
{
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQNoOpBindingRegistry.java
View file @
3814e509
...
@@ -23,7 +23,7 @@ import org.hornetq.spi.core.naming.BindingRegistry;
...
@@ -23,7 +23,7 @@ import org.hornetq.spi.core.naming.BindingRegistry;
*
*
* @author Stephane Nicoll
* @author Stephane Nicoll
* @since 1.1.0
* @since 1.1.0
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Deprecated
@Deprecated
public
class
HornetQNoOpBindingRegistry
implements
BindingRegistry
{
public
class
HornetQNoOpBindingRegistry
implements
BindingRegistry
{
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQProperties.java
View file @
3814e509
...
@@ -30,7 +30,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
...
@@ -30,7 +30,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
*
*
* @author Stephane Nicoll
* @author Stephane Nicoll
* @since 1.1.0
* @since 1.1.0
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@ConfigurationProperties
(
prefix
=
"spring.hornetq"
)
@ConfigurationProperties
(
prefix
=
"spring.hornetq"
)
@Deprecated
@Deprecated
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQXAConnectionFactoryConfiguration.java
View file @
3814e509
...
@@ -35,7 +35,7 @@ import org.springframework.context.annotation.Primary;
...
@@ -35,7 +35,7 @@ import org.springframework.context.annotation.Primary;
*
*
* @author Phillip Webb
* @author Phillip Webb
* @since 1.2.0
* @since 1.2.0
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Configuration
@Configuration
@ConditionalOnMissingBean
(
ConnectionFactory
.
class
)
@ConditionalOnMissingBean
(
ConnectionFactory
.
class
)
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/SpringBootHornetQConnectionFactory.java
View file @
3814e509
...
@@ -30,7 +30,7 @@ import org.springframework.util.StringUtils;
...
@@ -30,7 +30,7 @@ import org.springframework.util.StringUtils;
*
*
* @author Stéphane Lagraulet
* @author Stéphane Lagraulet
* @author Stephane Nicoll
* @author Stephane Nicoll
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Deprecated
@Deprecated
class
SpringBootHornetQConnectionFactory
extends
HornetQConnectionFactory
{
class
SpringBootHornetQConnectionFactory
extends
HornetQConnectionFactory
{
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/SpringBootHornetQXAConnectionFactory.java
View file @
3814e509
...
@@ -30,7 +30,7 @@ import org.springframework.util.StringUtils;
...
@@ -30,7 +30,7 @@ import org.springframework.util.StringUtils;
*
*
* @author Stéphane Lagraulet
* @author Stéphane Lagraulet
* @author Stephane Nicoll
* @author Stephane Nicoll
* @deprecated as of 1.4 in favor of the
a
rtemis support
* @deprecated as of 1.4 in favor of the
A
rtemis support
*/
*/
@Deprecated
@Deprecated
class
SpringBootHornetQXAConnectionFactory
extends
HornetQXAConnectionFactory
{
class
SpringBootHornetQXAConnectionFactory
extends
HornetQXAConnectionFactory
{
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/package-info.java
View file @
3814e509
/*
/*
* Copyright 2012-201
5
the original author or authors.
* Copyright 2012-201
6
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -16,5 +16,6 @@
...
@@ -16,5 +16,6 @@
/**
/**
* Auto-configuration for HornetQ.
* Auto-configuration for HornetQ.
* @deprecated as of 1.4 in favor of the Artemis support
*/
*/
package
org
.
springframework
.
boot
.
autoconfigure
.
jms
.
hornetq
;
package
org
.
springframework
.
boot
.
autoconfigure
.
jms
.
hornetq
;
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/velocity/package-info.java
View file @
3814e509
/*
/*
* Copyright 2012-201
5
the original author or authors.
* Copyright 2012-201
6
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -16,5 +16,7 @@
...
@@ -16,5 +16,7 @@
/**
/**
* Auto-configuration for Velocity.
* Auto-configuration for Velocity.
* @deprecated as of 1.4 following the deprecation of Velocity support in Spring Framework
* 4.3
*/
*/
package
org
.
springframework
.
boot
.
autoconfigure
.
velocity
;
package
org
.
springframework
.
boot
.
autoconfigure
.
velocity
;
spring-boot-test/src/main/java/org/springframework/boot/test/SpringApplicationContextLoader.java
View file @
3814e509
...
@@ -28,6 +28,7 @@ import java.util.Set;
...
@@ -28,6 +28,7 @@ import java.util.Set;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.test.context.SpringBootContextLoader
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.boot.web.support.ServletContextApplicationContextInitializer
;
import
org.springframework.boot.web.support.ServletContextApplicationContextInitializer
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.context.ApplicationContext
;
...
@@ -71,8 +72,7 @@ import org.springframework.web.context.support.GenericWebApplicationContext;
...
@@ -71,8 +72,7 @@ import org.springframework.web.context.support.GenericWebApplicationContext;
* @see org.springframework.boot.test.IntegrationTest
* @see org.springframework.boot.test.IntegrationTest
* @see org.springframework.boot.test.WebIntegrationTest
* @see org.springframework.boot.test.WebIntegrationTest
* @deprecated as of 1.4 in favor of {@link SpringBootTest @SpringBootTest}
* @deprecated as of 1.4 in favor of {@link SpringBootTest @SpringBootTest}
* {@link org.springframework.boot.test.context.SpringBootContextLoader} can also be
* {@link SpringBootContextLoader} can also be considered if absolutely necessary.
* considered if absolutely necessary.
*/
*/
@Deprecated
@Deprecated
public
class
SpringApplicationContextLoader
extends
AbstractContextLoader
{
public
class
SpringApplicationContextLoader
extends
AbstractContextLoader
{
...
...
spring-boot/src/main/java/org/springframework/boot/context/embedded/DelegatingFilterProxyRegistrationBean.java
View file @
3814e509
...
@@ -46,7 +46,7 @@ import org.springframework.web.filter.DelegatingFilterProxy;
...
@@ -46,7 +46,7 @@ import org.springframework.web.filter.DelegatingFilterProxy;
* @see FilterRegistrationBean
* @see FilterRegistrationBean
* @see DelegatingFilterProxy
* @see DelegatingFilterProxy
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.web.DelegatingFilterProxyRegistrationBean
*
{@link org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean}
*/
*/
@Deprecated
@Deprecated
public
class
DelegatingFilterProxyRegistrationBean
public
class
DelegatingFilterProxyRegistrationBean
...
...
spring-boot/src/main/java/org/springframework/boot/context/embedded/FilterRegistrationBean.java
View file @
3814e509
...
@@ -39,7 +39,7 @@ import org.springframework.boot.web.servlet.ServletContextInitializer;
...
@@ -39,7 +39,7 @@ import org.springframework.boot.web.servlet.ServletContextInitializer;
* @see ServletContext#addFilter(String, Filter)
* @see ServletContext#addFilter(String, Filter)
* @see DelegatingFilterProxyRegistrationBean
* @see DelegatingFilterProxyRegistrationBean
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.web.servlet.FilterRegistrationBean
*
{@link org.springframework.boot.web.servlet.FilterRegistrationBean}
*/
*/
@Deprecated
@Deprecated
public
class
FilterRegistrationBean
public
class
FilterRegistrationBean
...
...
spring-boot/src/main/java/org/springframework/boot/context/embedded/MultipartConfigFactory.java
View file @
3814e509
...
@@ -29,7 +29,8 @@ import javax.servlet.MultipartConfigElement;
...
@@ -29,7 +29,8 @@ import javax.servlet.MultipartConfigElement;
* </pre>
* </pre>
*
*
* @author Phillip Webb
* @author Phillip Webb
* @deprecated as of 1.4 in favor of org.springframework.boot.web.MultipartConfigFactory
* @deprecated as of 1.4 in favor of
* {@link org.springframework.boot.web.servlet.MultipartConfigFactory}
*/
*/
@Deprecated
@Deprecated
public
class
MultipartConfigFactory
public
class
MultipartConfigFactory
...
...
spring-boot/src/main/java/org/springframework/boot/context/embedded/ServletContextInitializer.java
View file @
3814e509
...
@@ -36,7 +36,7 @@ import org.springframework.web.WebApplicationInitializer;
...
@@ -36,7 +36,7 @@ import org.springframework.web.WebApplicationInitializer;
* @author Phillip Webb
* @author Phillip Webb
* @see WebApplicationInitializer
* @see WebApplicationInitializer
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.web.servlet.ServletContextInitializer
*
{@link org.springframework.boot.web.servlet.ServletContextInitializer}
*/
*/
@Deprecated
@Deprecated
public
interface
ServletContextInitializer
public
interface
ServletContextInitializer
...
...
spring-boot/src/main/java/org/springframework/boot/context/embedded/ServletListenerRegistrationBean.java
View file @
3814e509
...
@@ -48,7 +48,7 @@ import org.springframework.boot.web.servlet.ServletContextInitializer;
...
@@ -48,7 +48,7 @@ import org.springframework.boot.web.servlet.ServletContextInitializer;
* @author Dave Syer
* @author Dave Syer
* @author Phillip Webb
* @author Phillip Webb
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.web.ServletListenerRegistrationBean
*
{@link org.springframework.boot.web.servlet.ServletListenerRegistrationBean}
*/
*/
@Deprecated
@Deprecated
public
class
ServletListenerRegistrationBean
<
T
extends
EventListener
>
public
class
ServletListenerRegistrationBean
<
T
extends
EventListener
>
...
...
spring-boot/src/main/java/org/springframework/boot/context/embedded/ServletRegistrationBean.java
View file @
3814e509
...
@@ -36,7 +36,8 @@ import org.springframework.boot.web.servlet.ServletContextInitializer;
...
@@ -36,7 +36,8 @@ import org.springframework.boot.web.servlet.ServletContextInitializer;
* @author Phillip Webb
* @author Phillip Webb
* @see ServletContextInitializer
* @see ServletContextInitializer
* @see ServletContext#addServlet(String, Servlet)
* @see ServletContext#addServlet(String, Servlet)
* @deprecated as of 1.4 in favor of org.springframework.boot.web.servlet.ServletRegistrationBean
* @deprecated as of 1.4 in favor of
* {@link org.springframework.boot.web.servlet.ServletRegistrationBean}
*/
*/
@Deprecated
@Deprecated
public
class
ServletRegistrationBean
public
class
ServletRegistrationBean
...
...
spring-boot/src/main/java/org/springframework/boot/context/web/ErrorPageFilter.java
View file @
3814e509
...
@@ -37,7 +37,8 @@ import org.springframework.stereotype.Component;
...
@@ -37,7 +37,8 @@ import org.springframework.stereotype.Component;
* @author Phillip Webb
* @author Phillip Webb
* @author Andy Wilkinson
* @author Andy Wilkinson
* @since 1.4.0
* @since 1.4.0
* @deprecated as of 1.4 in favor of org.springframework.boot.web.support.ErrorPageFilter
* @deprecated as of 1.4 in favor of
* {@link org.springframework.boot.web.support.ErrorPageFilter}
*/
*/
@Component
@Component
@Order
(
Ordered
.
HIGHEST_PRECEDENCE
)
@Order
(
Ordered
.
HIGHEST_PRECEDENCE
)
...
...
spring-boot/src/main/java/org/springframework/boot/context/web/OrderedCharacterEncodingFilter.java
View file @
3814e509
...
@@ -25,7 +25,7 @@ import org.springframework.web.filter.CharacterEncodingFilter;
...
@@ -25,7 +25,7 @@ import org.springframework.web.filter.CharacterEncodingFilter;
* @author Phillip Webb
* @author Phillip Webb
* @since 1.2.1
* @since 1.2.1
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.web.filter.OrderedCharacterEncodingFilter
*
{@link org.springframework.boot.web.filter.OrderedCharacterEncodingFilter}
*/
*/
@Deprecated
@Deprecated
public
class
OrderedCharacterEncodingFilter
public
class
OrderedCharacterEncodingFilter
...
...
spring-boot/src/main/java/org/springframework/boot/context/web/OrderedHiddenHttpMethodFilter.java
View file @
3814e509
...
@@ -25,7 +25,7 @@ import org.springframework.web.filter.HiddenHttpMethodFilter;
...
@@ -25,7 +25,7 @@ import org.springframework.web.filter.HiddenHttpMethodFilter;
* @author Phillip Webb
* @author Phillip Webb
* @since 1.2.4
* @since 1.2.4
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.web.filter.OrderedHiddenHttpMethodFilter
*
{@link org.springframework.boot.web.filter.OrderedHiddenHttpMethodFilter}
*/
*/
@Deprecated
@Deprecated
public
class
OrderedHiddenHttpMethodFilter
public
class
OrderedHiddenHttpMethodFilter
...
...
spring-boot/src/main/java/org/springframework/boot/context/web/OrderedHttpPutFormContentFilter.java
View file @
3814e509
...
@@ -25,7 +25,7 @@ import org.springframework.web.filter.HttpPutFormContentFilter;
...
@@ -25,7 +25,7 @@ import org.springframework.web.filter.HttpPutFormContentFilter;
* @author Joao Pedro Evangelista
* @author Joao Pedro Evangelista
* @since 1.3.0
* @since 1.3.0
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.web.filter.OrderedHttpPutFormContentFilter
*
{@link org.springframework.boot.web.filter.OrderedHttpPutFormContentFilter}
*/
*/
@Deprecated
@Deprecated
public
class
OrderedHttpPutFormContentFilter
public
class
OrderedHttpPutFormContentFilter
...
...
spring-boot/src/main/java/org/springframework/boot/context/web/OrderedRequestContextFilter.java
View file @
3814e509
...
@@ -25,7 +25,7 @@ import org.springframework.web.filter.RequestContextFilter;
...
@@ -25,7 +25,7 @@ import org.springframework.web.filter.RequestContextFilter;
* @author Phillip Webb
* @author Phillip Webb
* @since 1.3.0
* @since 1.3.0
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.web.filter.OrderedRequestContextFilter
*
{@link org.springframework.boot.web.filter.OrderedRequestContextFilter}
*/
*/
@Deprecated
@Deprecated
public
class
OrderedRequestContextFilter
public
class
OrderedRequestContextFilter
...
...
spring-boot/src/main/java/org/springframework/boot/context/web/ServerPortInfoApplicationContextInitializer.java
View file @
3814e509
...
@@ -39,7 +39,7 @@ import org.springframework.core.env.Environment;
...
@@ -39,7 +39,7 @@ import org.springframework.core.env.Environment;
* @author Phillip Webb
* @author Phillip Webb
* @since 1.3.0
* @since 1.3.0
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.context.embedded.ServerPortInfoApplicationContextInitializer
*
{@link org.springframework.boot.context.embedded.ServerPortInfoApplicationContextInitializer}
*/
*/
@Deprecated
@Deprecated
public
class
ServerPortInfoApplicationContextInitializer
extends
public
class
ServerPortInfoApplicationContextInitializer
extends
...
...
spring-boot/src/main/java/org/springframework/boot/context/web/ServletContextApplicationContextInitializer.java
View file @
3814e509
...
@@ -26,7 +26,7 @@ import org.springframework.context.ApplicationContextInitializer;
...
@@ -26,7 +26,7 @@ import org.springframework.context.ApplicationContextInitializer;
* @author Dave Syer
* @author Dave Syer
* @author Phillip Webb
* @author Phillip Webb
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.web.support.ServletContextApplicationContextInitializer
*
{@link org.springframework.boot.web.support.ServletContextApplicationContextInitializer}
*/
*/
@Deprecated
@Deprecated
public
class
ServletContextApplicationContextInitializer
extends
public
class
ServletContextApplicationContextInitializer
extends
...
...
spring-boot/src/main/java/org/springframework/boot/context/web/SpringBootServletInitializer.java
View file @
3814e509
...
@@ -47,7 +47,7 @@ import org.springframework.web.WebApplicationInitializer;
...
@@ -47,7 +47,7 @@ import org.springframework.web.WebApplicationInitializer;
* @author Andy Wilkinson
* @author Andy Wilkinson
* @see #configure(SpringApplicationBuilder)
* @see #configure(SpringApplicationBuilder)
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
*
org.springframework.boot.web.support.SpringBootServletInitializer
*
{@link org.springframework.boot.web.support.SpringBootServletInitializer}
*/
*/
@Deprecated
@Deprecated
public
abstract
class
SpringBootServletInitializer
public
abstract
class
SpringBootServletInitializer
...
...
spring-boot/src/main/java/org/springframework/boot/orm/jpa/EntityScan.java
View file @
3814e509
...
@@ -44,7 +44,7 @@ import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean;
...
@@ -44,7 +44,7 @@ import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean;
*
*
* @author Phillip Webb
* @author Phillip Webb
* @deprecated as of 1.4 in favor of
* @deprecated as of 1.4 in favor of
* {@code
@
org.springframework.boot.autoconfigure.domain.EntityScan} or explicit
* {@code org.springframework.boot.autoconfigure.domain.EntityScan} or explicit
* configuration of the {@link LocalContainerEntityManagerFactoryBean} (either
* configuration of the {@link LocalContainerEntityManagerFactoryBean} (either
* {@link LocalContainerEntityManagerFactoryBean#setPackagesToScan(String...) directly} or
* {@link LocalContainerEntityManagerFactoryBean#setPackagesToScan(String...) directly} or
* using the {@link EntityManagerFactoryBuilder.Builder#packages(Class...)
* using the {@link EntityManagerFactoryBuilder.Builder#packages(Class...)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment