Structuring Spring Boot Applications

1 · Josh Long · Aug. 22, 2021, 9:26 p.m.
Its hard to think about structuring applications. Three's a lot to think aout at the higher level - is it a batch job, a web application, a messaging application, etc., The frameworks - Spring Batch, Spring Webflux, Spring Integration, respectively - will guide those decisions. It is easier to talk about how to structure your Java objects so that they work well in an IoC conainer like Spring. Remember, at the end of the day, Spring is a big bag of objects. It needs to know how your objects are ...