本文整理汇总了Java中org.springframework.boot.context.properties.DeprecatedConfigurationProperty类的典型用法代码示例。如果您正苦于以下问题:Java DeprecatedConfigurationProperty类的具体用法?Java DeprecatedConfigurationProperty怎么用?Java DeprecatedConfigurationProperty使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DeprecatedConfigurationProperty类属于org.springframework.boot.context.properties包,在下文中一共展示了DeprecatedConfigurationProperty类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getServer
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
@DeprecatedConfigurationProperty(replacement = "custom.connection.address")
@Deprecated
public String getServer() {
return getAddress();
}
示例2: isPooled
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
/**
* Get if pooling is enabled.
* @return if pooling is enabled
* @deprecated as of 1.4 in favor of "spring.activemq.pool.enabled"
*/
@Deprecated
@DeprecatedConfigurationProperty(replacement = "spring.activemq.pool.enabled")
public boolean isPooled() {
return getPool().isEnabled();
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:11,代码来源:ActiveMQProperties.java
示例3: getSerializationInclusion
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
@Deprecated
@DeprecatedConfigurationProperty(reason = "ObjectMapper.setSerializationInclusion was deprecated in Jackson 2.7", replacement = "spring.jackson.default-property-inclusion")
public JsonInclude.Include getSerializationInclusion() {
return getDefaultPropertyInclusion();
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:6,代码来源:JacksonProperties.java
示例4: getNamingStrategy
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
@Deprecated
@DeprecatedConfigurationProperty(replacement = "spring.jpa.hibernate.naming.strategy")
public String getNamingStrategy() {
return getNaming().getStrategy();
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:6,代码来源:JpaProperties.java
示例5: getSessionTimeout
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
/**
* Get the session timeout.
* @return the session timeout
* @deprecated since 1.3.0 in favor of {@code session.timeout}.
*/
@Deprecated
@DeprecatedConfigurationProperty(replacement = "server.session.timeout")
public Integer getSessionTimeout() {
return this.session.getTimeout();
}
示例6: getAccessLogEnabled
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
/**
* Specify if access log is enabled.
* @return {@code true} if access log is enabled
* @deprecated since 1.3.0 in favor of {@code server.tomcat.accesslog.enabled}
*/
@Deprecated
@DeprecatedConfigurationProperty(replacement = "server.tomcat.accesslog.enabled")
public boolean getAccessLogEnabled() {
return this.accesslog.isEnabled();
}
示例7: getAccessLogPattern
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
/**
* Get the format pattern for access logs.
* @return the format pattern for access logs
* @deprecated since 1.3.0 in favor of {@code server.tomcat.accesslog.pattern}
*/
@Deprecated
@DeprecatedConfigurationProperty(replacement = "server.tomcat.accesslog.pattern")
public String getAccessLogPattern() {
return this.accesslog.getPattern();
}
示例8: isAccessLogEnabled
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
/**
* Specify if access log is enabled.
* @return {@code true} if access log is enabled
* @deprecated since 1.3.0 in favor of {@code server.undertow.accesslog.enabled}
*/
@Deprecated
@DeprecatedConfigurationProperty(replacement = "server.undertow.accesslog.enabled")
public boolean isAccessLogEnabled() {
return this.accesslog.isEnabled();
}
示例9: getAccessLogDir
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
/**
* Get the access log directory.
* @return the access log directory
* @deprecated since 1.3.0 in favor of {@code server.undertow.accesslog.dir}
*/
@Deprecated
@DeprecatedConfigurationProperty(replacement = "server.undertow.accesslog.dir")
public File getAccessLogDir() {
return this.accesslog.getDir();
}
示例10: getAuthorization
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
@DeprecatedConfigurationProperty(reason = "replaced by headers", replacement = "headers")
@Deprecated
public String getAuthorization() {
return this.authorization;
}
示例11: getMaxHttpHeaderSize
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty; //导入依赖的package包/类
/**
* Get the max http header size.
* @return the max http header size.
* @deprecated as of 1.4 in favor of
* {@link ServerProperties#getMaxHttpHeaderSize()}
*/
@Deprecated
@DeprecatedConfigurationProperty(replacement = "server.max-http-header-size")
public int getMaxHttpHeaderSize() {
return this.maxHttpHeaderSize;
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:12,代码来源:ServerProperties.java