I have a simple Java
application that carries out all its logic in the main method
of one class.
Currently I have just created methods in this class, declared them as Static
and called them in the main.
Is this approach preferred over e.g. creating a "service"
class then creating an instance of it to invoke my methods?