消除Could not find property [struts.actionMapping]警告的方法

警告信息:

2015-8-19 23:43:57 com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn
警告: Could not find property [struts.actionMapping]
2015-8-19 23:43:57 com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn
警告: Could not find property [org.apache.catalina.jsp_file]
2015-8-19 23:43:57 com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn
警告: Could not find property [struts.valueStack]
2015-8-19 23:43:57 com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn
警告: Could not find property [templateDir]
2015-8-19 23:43:57 com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn
警告: Could not find property [templateDir]
2015-8-19 23:43:57 com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn
警告: Could not find property [theme]

解决办法:

加入下面相应的jar包:

log4j-1.2.17.jar

此时再次运行时就不会再提示那么多的没用的信息了。

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-09-30 07:21:25

消除Could not find property [struts.actionMapping]警告的方法的相关文章

JAVA_Could not find property [struts.actionMapping]怎么办

你的项目中不包含log4j.jar这个文件,包含进去即可

spring 配置文件 引入外部的property文件的两种方法

spring  的配置文件 引入外部的property文件的两种方法 <!-- 引入jdbc配置文件    方法一 --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <lis

property,多态,绑定方法与非绑定方法

1.property property本质就是一个python为你准备好了的--装饰器,那既然他是装饰器,也就意味着他的用法就是我们熟悉的装饰器语法糖用法@+名字,而它的作用就是将装饰的函数(类中定义的方法)伪装成一种属性(类中有两种特质,一是属性你也可以理解为不变的量,二是方法也就是多态变化的函数),那property具体是怎么做到这点呢?先来思考一个问题. 成人的BMI数值: 过轻:低于18.5 正常:18.5-23.9 过重:24-27 肥胖:28-32 非常肥胖, 高于32 体质指数(B

gcc或clang中消除特定警告的方法

一般在编译代码时会有相当多的警告信息,尤其当我们使用了-Wall选项的时候.-Wall绝不是像其字面意思一样打开全部警告.只是它打开的警告也相当多了.对于一些我们已知"无害"但仍然打印出来挤占可怜的控制台空间的警告,我们当然能够将其"屏蔽"掉. 就拿下面代码来说: #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <unistd.h>

Struts的莫名问题解决方法:Attribute class invalid for tag present according to TLD

没想到结果页面都无法访问了,提示说Attribute class invalid for tag present according to TLD错误 例如: <html:text property="comCode"  styleId="comCode"  class="combo"  style="width:100%"/> 这里不是class ,而是styleClass <%@ taglib uri=&

ld: warning: directory not found for option 去掉警告的方法

工程老是提示ld: warning: directory not found for option:xxxxxx 这种提示,通常是由于添加了第三方SDK,但是后来改了个名字或者去掉了SDK,但是在 Build Settings----->Search Paths----->Library Search Paths 中仍然没有删除掉对应的路径, 所以需要到Library Search Paths和Framework Search Paths中删除掉警告的路径,就OK了

iOS 自定义警告提示(方法+宏)--模仿MJ

1,方法 最好是单独弄到一个类中,定义为类方法. 都知道iOS的debug与release,所以我一开始就定义了一个这样的宏: #ifdef DEBUG #define ZHHLog(...) NSLog(__VA_ARGS__) #else #define ZHHLog(...) #endif #define MAKECHAR(param) @#param 图.h 图.m 使用方法 2,宏 定义宏,没有上面的麻烦,直接弄到一个公共的.h中就OKle. 代码: #ifdef DEBUG #def

安装SQL2005提示“SQL Server 2005 COM+ 目录要求”警告 解决方法

SQL Server 2005 COM+ 目录要求警告①.启动Distributed Transaction Coordinator 服务        打开服务,在服务中找到Distributed Transaction Coordinator服务,选择"属性":         在"登录"选项卡中,选择"此帐户",帐户名填写"NT AUTHORITY/NetworkService",密码为空:         在点击&qu

IAR EWARM 关闭纯汇编函数的警告的方法

/关闭警告 #pragma diag_suppress=Pe940 uint8_t GetMyData(void) { asm(“MOV R0, #0x550F”); } //恢复警告 #pragma diag_warning=Pe940