weblogic8.1如何配置使得程序中的System.out输出可以记录到某个Log文件中?
我原来使用的是tomcat,现在改为weblogic8.1,开发语言为JAVA,环境搭建好以后一切正常,但是不知道如何配置才能将程序中写的System.out.print...
我原来使用的是tomcat,现在改为weblogic8.1,开发语言为JAVA,环境搭建好以后一切正常,但是不知道如何配置才能将程序中写的System.out.println();语句输出的信息记录到某个Log文件中。
配置Servers 下的logging 也只能把weblogic的运行信息输出,不能输出程序中写的输出信息。 展开
配置Servers 下的logging 也只能把weblogic的运行信息输出,不能输出程序中写的输出信息。 展开
3个回答
展开全部
可以在weblogic8.1 中使用log4j记录日志文件
import java.io.IOException;
import java.net.URL;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.log4j.PropertyConfigurator;
public class Log4JInit extends HttpServlet {
public void init(ServletConfig conf) throws ServletException {
// URL pro=this.getClass().getClassLoader().getResource("/log4j.properties");
// System.out.println(pro);
// PropertyConfigurator.configure(pro);
super.init(conf);//如果注释这行,不注释上面的,效果一样。
}
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
}
}
import java.io.IOException;
import java.net.URL;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.log4j.PropertyConfigurator;
public class Log4JInit extends HttpServlet {
public void init(ServletConfig conf) throws ServletException {
// URL pro=this.getClass().getClassLoader().getResource("/log4j.properties");
// System.out.println(pro);
// PropertyConfigurator.configure(pro);
super.init(conf);//如果注释这行,不注释上面的,效果一样。
}
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
}
}
大雅新科技有限公司
2024-11-19 广告
2024-11-19 广告
这方面更多更全面的信息其实可以找下大雅新。深圳市大雅新科技有限公司从事KVM延长器,DVI延长器,USB延长器,键盘鼠标延长器,双绞线视频传输器,VGA视频双绞线传输器,VGA延长器,VGA视频延长器,DVI KVM 切换器等,优质供应商,...
点击进入详情页
本回答由大雅新科技有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询