log4j
文章平均质量分 91
不急god
我喜欢,驾驭着代码在风驰电掣中创造完美!我喜欢,操纵着代码在随必所欲中体验生活!我喜欢,书写着代码在时代浪潮中完成经典!每一段新的代码在我手中诞生对我来说就象观看刹那花开的感动!
邮箱:441985745@qq.com
欢迎各种骚扰
展开
-
logback配置
前言背景知识: 级别依次为【从高到低】:FATAL > ERROR > WARN > INFO > DEBUG > TRACE使用方式maven依赖中添加了spring-boot-starter-logging <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring...原创 2022-04-29 09:47:13 · 1105 阅读 · 0 评论 -
在项目中添加日志,Log4j,相关配置
一,首先导入相关jar包:log4j-1.2.16.jar,slf4j-log4j12-1.7.2.jar,二、配置log4j.properties### direct log messages to stdout ###### 设置输出源为控制台输出 ###log4j.appender.stdout=org.apache.log4j.ConsoleAppenderlog4j.原创 2016-05-25 10:43:42 · 5182 阅读 · 0 评论 -
spirngMVC如何在项目中打印异常日志+springmvc事务控制详解
首先 service层的增、删、改操作前要加注解@Transactonal,如下 @Transactional public void saveErpProductType(ErpProductType erpProductType) { erpProductTypeDao.saveOrUpdate(erpProductType); }这样,当此方法出现异常时,会抛出异常,在C原创 2016-06-30 09:55:08 · 2108 阅读 · 0 评论