在Spring中使用Jasypt时,PropertiesLoaderSupport类的load属性方法中的记录器级别设置为Info
protected void loadProperties(Properties props) throws IOException {
if (this.locations != null) {
for (Resource location : this.locations) {
if (logger.isInfoEnabled()) {
logger.info("Loading properties file from " + location);
}
上面的代码块在使用Jasypt时返回true,而在Spring中返回false是因为我收到了大量不需要的日志消息。
有人可以建议我如何让它通过配置返回false。
我也在使用log4j作为我的应用程序。
谢谢
答案 0 :(得分:0)
经过大量搜索后我才能找到结果...要解决此问题,我们必须在用于应用程序的Logger配置中设置Jasypt的Logger属性。例如
name =" log4j.logger.org.jasypt">错误
这将解决问题。