I am iterating over a List of CustomObject and while doing this iteration, I am mutating this object by adding a tag to tags list of this custom object. I am not adding or removing any CustomObject to or from customObjects (List). I am still getting java.util.ConcurrentModifcationException. Here is the stack trace: Does this mean we can get ConcurrentModifcationException even
Tag: fail-fast
How to make Spring server to start even if database is down?
I’m using a Spring Boot(1.4.7) & MyBatis. I cannot start program with errors when database is disconnected on Eclipse or Linux server. (Database is not located on localhost.) When I try to start program with disconnected database, print this. Is there any way? Thanks Answer You can set: in your application.properties. According to the Spring Boot 2.5.5 user guide: By