jsoup:一个强大的java html解析工具

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 implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do. scrape and parse HTML from a URL, file, or string find and extract data, using DOM traversal or CSS selectors manipulate the HTML elements......

如何优雅地写出单例模式

单例模式算是设计模式中最容易理解,也是最容易手写代码的模式了吧。但是其中的坑却不少,所以也常作为面试题来考。本文主要对几种单例写法的整理,并分析其优缺点。很多都是一些老生常谈的问题,但如果......

解决:uncategorized SQLException for SQL []; SQL state [null]; error code [0]

在java开发中,遇到一个报SQLMapper文件的异常,初看是在返回结果属性注入的时候发生的异常。但是排查的时候,非常痛苦。没看懂是因为什么原因导致的异常。 Talk is cheap,show me the Exception:org.springframework.jdbc.UncategorizedSQLException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [null]; error code [0]; --- The......