为了方便查询系统出错弄个错误日志出来对于维护运维来说是很有必要的. 1.在Asp.Net MVC项目中的App_Start添加一个用于处理异常类的文件ErrorLog让他继承HandleErrorAttribute类并重写OnException方法 public class ErrorLog: HandleErrorAttribute { public override void OnException(ExceptionContext filterContext) { if(!filterCo…
当你插入几百万数据时,由于有几条脏数据而导致插入失败,是不是很恼火.10g R2之后有个新功能.将插入过程中失败的记录插入到还有一张表中. SQL> drop table test purge; SQL> drop table test_bad purge; SQL> create table test as select * from dba_objects where 1<>1; SQL> execute dbms_errlog.create_error_log('…
前言 首先先介绍一下Jsoup:(摘自官网) jsoup is a Java library for working with real-world HTML. It provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jquery-like methods. Jsoup俗称“大杀器”,具体的使用大家可以看 jsoup中文文档 代码编写 首先mav…