Tagged Questions

1
vote
2answers
2k views

Hibernate throws unique constraint violation exception while updating field part of unique key

Below is the use case: I have a unique index defined on 3 columns say A,B,C. Assume the values in them are A1,B1,C1. My java code is adding a new record say A1,B1,C1 but before this record is added, i ...
1
vote
1answer
69 views

Is it possible that EDT violations cause NullPointerException in an external software?

I have a Java software that was recently integrated into another Java software (which I will call "external" software). We use listeners and call back mechanisms for "communication" between two ...
0
votes
4answers
53 views

How is this not a Java visibility violation

It is a simple implementation of linked list to split one list into two sublists. Other details have been discarded for simplicity class SList { private head; Object item; public void ...
0
votes
4answers
356 views

Why a EDT violation happens?

I started to use CheckThreadViolationRepaintManager to detect EDT violations. It complains about: partner = getParameter("partner",generatePartnerSelectionPanel(),Design.partnerSelectionDuration); ...
0
votes
2answers
522 views

PMD rule DataflowAnomalyAnalysis oddness

I have the following JUnit test: @Test public void testRunLocalhost() throws IOException, InterruptedException { // Start an AnnouncerThread final AnnouncerThread announcer = new ...