Spring configurations
This post is about how Spring configurations are used in this project.
Developer from Somewhere
This post is about how Spring configurations are used in this project.
I had an issue with a builder. I had used it like this:
reportCreator.start(game, raceId).type(PlanetHasBuiltMinesReport.class)
.addArguments(name, numberOfItems);
In the last post I described an alternative to a POJO with getters and setters for holding data. I used beans for access:
@Autowired private PlanetName planetName;
...
Planet newPlanet = ...
String name = ...
planetName.setValue(newPlanet, name);
I ended with a few pros and cons and
When the data is stored together (in the map), it is jumbled up. Maybe that will prove painful, maybe when migrating data?
Like a lot of other software, Stars! contains lots of features that are totally independent from each other. But an implementation of Stars! also needs to allow for interaction between these components, for example:
This is a blog about the reimplementation of Stars! on GitHub.