wzl002
posts - 10, comments - 9, trackbacks - 0, articles - 17
导航
BlogJava
首页
新随笔
联系
聚合
管理
<
2010年7月
>
日
一
二
三
四
五
六
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
常用链接
我的随笔
我的文章
我的评论
我的参与
最新评论
留言簿
(2)
给我留言
查看公开留言
查看私人留言
随笔分类
struts源码学习 (4)
随笔档案
2010年7月 (5)
2009年7月 (1)
2008年12月 (4)
2008年11月 (2)
文章分类
MyWeb日记
struts学习项目(13)
文章档案
2009年4月 (1)
2008年12月 (6)
2008年11月 (8)
搜索
最新评论
1. re: Action[/myaction] does not contain specified method (check logs)
241657
--41
2. re: Velocity中, Unable to find resource 'VM_global_library.vm' 问题解决办法[未登录]
配置strust2的示例项目时出现了这种问题,按楼主方法解决了!应该是velocity的使用问题吧。
--hello
3. re: 在MVC中实现的分页。
4223
--扯淡
4. re: Action[/myaction] does not contain specified method (check logs)
我都改过了 还是不行呢
--sf
5. re: SQL中 不等于的null注意[未登录]
直接 ISNULL(t.col,'')<>'3' 不更好么
--111
阅读排行榜
1. Velocity中, Unable to find resource 'VM_global_library.vm' 问题解决办法(14119)
2. SQL中 不等于<>的null注意(7291)
3. Action[/myaction] does not contain specified method (check logs)(4234)
4. Unable to read TLD "META-INF/c.tld" from JAR file (4179)
5. struts源码1 org.apache.struts.action.Action(3460)
评论排行榜
1. Action[/myaction] does not contain specified method (check logs)(2)
2. Unable to read TLD "META-INF/c.tld" from JAR file (2)
3. Velocity中, Unable to find resource 'VM_global_library.vm' 问题解决办法(1)
4. SQL中 不等于<>的null注意(1)
5. javascript中的replace与replaceAll(0)
velocity配置log4j过程及注意.
Posted on 2010-07-28 11:39
wesley1987
阅读(2462)
评论(0)
编辑
收藏
1。指定velocity.properties文件, 默认路径为 WEB-INF/velocity.properties 也可自定义路径, 在web.xml中
<
servlet
>
<
servlet-name
>
velocity
</
servlet-name
>
<
servlet-class
>
org.apache.velocity.tools.view.servlet.VelocityLayoutServlet
</
servlet-class
>
<
init-param
>
<
param-name
>
org.apache.velocity.properties
</
param-name
>
<
param-value
>
/WEB-INF/config/velocity.properties
</
param-value
>
</
init-param
>
<
init-param
>
<
param-name
>
org.apache.velocity.toolbox
</
param-name
>
<
param-value
>
/WEB-INF/config/velocity-toolbox.xml
</
param-value
>
</
init-param
>
<
load-on-startup
>
5
</
load-on-startup
>
</
servlet
>
注意
load-on-startup
需要配置且靠后, 否则启动时看不到日志.
2。在velocity.properties中配置日程相关参数:
#
----------------------------------------------------------------------------
# default LogSystem to use: default: AvalonLogSystem
#----------------------------------------------------------------------------
runtime
.
log
.
logsystem
.
class
=
org
.
apache
.
velocity
.
runtime
.
log
.
SimpleLog4JLogSystem
runtime
.
log
.
logsystem
.
log4j
.
category
=
velocity_log
#
----------------------------------------------------------------------------
# This controls if Runtime.error(), info() and warn() messages include the
# whole stack trace. The last property controls whether invalid references
# are logged.
#----------------------------------------------------------------------------
runtime
.
log
.
error
.
stacktrace
=
false
runtime
.
log
.
warn
.
stacktrace
=
false
runtime
.
log
.
info
.
stacktrace
=
false
runtime
.
log
.
invalid
.
reference
=
true
3\ 配置log4j.properties, 具体配置意义请参看log4j配置相关文档
log4j
.
rootLogger
=
INFO
,
CONSOLE
,
FILE
log4j
.
logger
.
velocity_log
=
INFO
,
CONSOLE
,
VELOCITY
log4j
.
addivity
.
org
.
apache
=
true
log4j
.
appender
.
CONSOLE
=
org
.
apache
.
log4j
.
ConsoleAppender
log4j
.
appender
.
CONSOLE
.
Threshold
=
WARN
log4j
.
appender
.
CONSOLE
.
Target
=
System
.
out
log4j
.
appender
.
CONSOLE
.
Encoding
=
GBK
log4j
.
appender
.
CONSOLE
.
layout
=
org
.
apache
.
log4j
.
PatternLayout
log4j
.
appender
.
CONSOLE
.
layout
.
ConversionPattern
=
[
%-
4p]
%d
{MM
-
dd HH
:
mm}
-
%m
%n
log4j
.
appender
.
VELOCITY
=
org
.
apache
.
log4j
.
FileAppender
log4j
.
appender
.
VELOCITY
.
File
=
E
:/
workspace
/
dwrt
/
WebRoot
/
log
/
velocity
.
log
log4j
.
appender
.
VELOCITY
.
Append
=
false
log4j
.
appender
.
VELOCITY
.
Encoding
=
GBK
log4j
.
appender
.
VELOCITY
.
layout
=
org
.
apache
.
log4j
.
PatternLayout
log4j
.
appender
.
VELOCITY
.
layout
.
ConversionPattern
=
[
%-
4p]
%d
{MM
-
dd HH
:
mm}
-
%m
%n
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
Powered by:
BlogJava
Copyright © wesley1987