All Questions
3 questions
-1
votes
2
answers
76
views
Java: Autogenerating documentation for Strategy Pattern with lambdas
Situation
Object MyObject needs to be sent to one of our downstream systems depending on the enum value of its field myField.
public class MyObject {
private MyEnum myField;
public MyEnum ...
5
votes
2
answers
328
views
How to deal with different configurations with non-overlapping properties?
I am working on a project based on the Java EE technology. First I'd like to tell you what I want to achieve, then what I already tried.
Task:
Imagine two types of configurations, which you want to ...
63
votes
6
answers
32k
views
Is object pooling a deprecated technique?
I am very familiar with the concept of object pooling and I always try to use it as much as possible.
Additionally I always thought that object pooling is the standard norm as I have observed that ...