Willie Scholtz

Results 4 issues of Willie Scholtz

the `Element` class now has the ability to quickly go `up`/`down`/`next`/`previous` according to the specified CSS selector Example: ``` java Document doc = Jsoup.connect("https://en.wikipedia.org/wiki/Java_(programming_language)").get(); Element fullTableOfContentsWhileNavigating = doc .down("li.toclevel-1.tocsection-13") .previous("li")...

Hi Maintainers! While extending `SqlSessionFactoryBuilder` allows users to _fully_ customise their implementations of `SqlSessionFactory` and `SqlSession`, the drawback is that you cannot use the safe defaults MyBatis provides anymore, which...

#101 Add support for constructor collection injection It is now possible to create completely immutable objects (including nested collections) with MyBatis. This has been done by keeping another meta object...

Will execute on pull requests, and run all benchmarks against master and post a comparison as a PR comment This will allow the maintainers of MyBatis to have concrete results...