Introduction
WSDL file describes webservices. Java classes are often generated from WSDL. For this purpose, we could use command line tools (e. g. wsdl2Java or Read more
Do you think about compatibility of your public API when you modify classes from it? It is especially easy to miss out that something Read more
How often do you think about possible changes in your API? Do you consider that something required could become optional in future? How about Read more
Autowired
is great annotation, which by default inject beans by type to annotated element (constructor, setter or field). But how to use it, when Read more
Extensions in Kotlin are very powerful mechanism. It allows for add any method to any of existing classes. Each instance has (as in Java) equals
Read more
I’ve recently written about using Callable in Groovy, but how does it look like in kotlin?
First, let’s Read more
We have to deal with properties in almost every projects that we write. Properties class, which we use in these cases, is Read more
Suppose you want submit job to ExecutorService.
You could create a class that implements Callable:
class MyJob implements Callable<Integer>{ @OverrideRead more