Skip to content
Snippets Groups Projects
Commit 9d1911dc authored by Paul-Christian Volkmer's avatar Paul-Christian Volkmer
Browse files

Use ConcurrentHashMaps and Spring @Transactional

This should prevent concurrent ConcurrentModificationException after
application lock on undeploy.
parent 7c6163d5
No related merge requests found
...@@ -3,6 +3,10 @@ package de.thm.arsnova; ...@@ -3,6 +3,10 @@ package de.thm.arsnova;
import java.util.Date; import java.util.Date;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import org.springframework.transaction.annotation.Isolation;
import org.springframework.transaction.annotation.Transactional;
import de.thm.arsnova.dao.IDatabaseDao; import de.thm.arsnova.dao.IDatabaseDao;
import de.thm.arsnova.entities.Feedback; import de.thm.arsnova.entities.Feedback;
...@@ -37,7 +41,7 @@ public class FeedbackStorage { ...@@ -37,7 +41,7 @@ public class FeedbackStorage {
private IDatabaseDao dao; private IDatabaseDao dao;
public FeedbackStorage(IDatabaseDao newDao) { public FeedbackStorage(IDatabaseDao newDao) {
this.data = new HashMap<String, Map<String,FeedbackStorageObject>>(); this.data = new ConcurrentHashMap<String, Map<String,FeedbackStorageObject>>();
this.dao = newDao; this.dao = newDao;
} }
...@@ -90,13 +94,14 @@ public class FeedbackStorage { ...@@ -90,13 +94,14 @@ public class FeedbackStorage {
return null; return null;
} }
@Transactional(isolation = Isolation.READ_COMMITTED)
public boolean saveFeedback(String keyword, int value, User user) { public boolean saveFeedback(String keyword, int value, User user) {
if (dao.getSession(keyword) == null) { if (dao.getSession(keyword) == null) {
throw new NotFoundException(); throw new NotFoundException();
} }
if (data.get(keyword) == null) { if (data.get(keyword) == null) {
data.put(keyword, new HashMap<String, FeedbackStorageObject>()); data.put(keyword, new ConcurrentHashMap<String, FeedbackStorageObject>());
} }
System.out.println(user.getUsername()); System.out.println(user.getUsername());
...@@ -105,6 +110,7 @@ public class FeedbackStorage { ...@@ -105,6 +110,7 @@ public class FeedbackStorage {
return true; return true;
} }
@Transactional(isolation = Isolation.READ_COMMITTED)
public void cleanFeedbackVotes(int cleanupFeedbackDelay) { public void cleanFeedbackVotes(int cleanupFeedbackDelay) {
for (String keyword : data.keySet()) { for (String keyword : data.keySet()) {
this.cleanSessionFeedbackVotes(keyword, cleanupFeedbackDelay); this.cleanSessionFeedbackVotes(keyword, cleanupFeedbackDelay);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment