排序
Maven plugins that I like
Maven plugins that I like,I’ve been through a couple of projects until now and I’m noticing that there are a couple of maven plugins that are useful but are not that famous. I’l...
Testing JPQL queries straight from Intellij
Testing JPQL queries straight from Intellij,In my current project, most of the queries are written in Java Persistence Query Language (JPQL). As with any *QL (that eventually gets ...
Inspecting in-memory HSQLDB
Inspecting in-memory HSQLDB,Sometimes, for automatic testing of your Java application, you need to configure a DB connection. Most of the time the decision is to go for an in-memor...
Excluding Hibernate entities from auto-generation
Excluding Hibernate entities from auto-generation,Today I had to do something completely new with Hibernate, within the scope of a unit test. I had a group of entities and wanted t...
Three Most Useful but least known List functions. | KnowYourKotlin
Three Most Useful but least known List functions. | KnowYourKotlin, KnowYourKotlin (7 Part Series) 1 that's how we try catch?:value | KnowYourKotlin 2 6 things you need to know bef...
Make an Immutable Object – in Java
Make an Immutable Object - in Java, Originally published on www.gunnargissel.com Immutable objects are objects that don't change. You make them, then you can't change them. Instead...