- By Javier Chacana
- ·
- Posted 30 Sep 2021
JBCNConf in times of COVID
This year, the 2021 edition of the traditional JBCNConf was held. Unfortunately, the 2020 event didn't take place the year prior due to difficulties..
I often need to know which jar file contains a particular class and I'm sure most people have that problem at some point. You can use jarFinder but it's not always up-to-date or the class might be in a jar private to your organisation. You can use the following command to do a search on your file systems for all jars, and search in them for the class you're trying to find:
find -name *.jar -print -exec jar tvf {} \; | egrep "\.jar|<Class Name>"
Replace Class Name with the name of your class (Case sensitive). Use cygwin if you are on windows.
This year, the 2021 edition of the traditional JBCNConf was held. Unfortunately, the 2020 event didn't take place the year prior due to difficulties..
We already spoke about the different type systems and how they work here, now it's time to write some code and see how type can help us.
Integration tests can be slow and unreliable because they depend on too many components in the system. Up to a certain point, this is unavoidable:..
Join our newsletter for expert tips and inspirational case studies
Join our newsletter for expert tips and inspirational case studies