I have a strange problem arising in my application, I will quickly explain the global architecture, and then my problem in depth.
I use the service to populate the HashMap<DomainObject,Boolean> coming from my database (JPA), which in turn returns to my view by calling the remote EJB method (using Apache Wicket). In this part, I add a new DomainObject to the map returned to store any new value from my end user.
The problem occurs when the user clicks the "add" button in his browser, I try to restore the newly created item on my map, but it fails. When playing with the debugger, I come across the following things.
Assuming the HashMap<DomainObject, Boolean> map and DomainObject do are interesting two variables, I have the following results in the debugger
map.keySet(); gives me an object corresponding to do (even if any simili reference is identical), hashcode() for both objects returns the same value and equals() between the two return values true
map.containsKey(do); returns false
map.get(do) ; returns null , strange because my key is in map .
Assuming my newly created element is the first key listed by keySet() , I do the following: map.get(new ArrayList(map.keySet()).get(0)) and it returns null.
If this can help, adding breakpoints to my DomainObject.equals() and DomainObject.hashcode() methods, I found that map.get() only calls hashcode() , not equals() .
The only workaround I found was to recreate a new map on top of the existing new HashMap(map) , on this new map, I have no problem finding an object by its key.
I hope someone here can give me a pointer to what is happening, thanks.
Used environment:
- Sun Java 1.6.0_26 x64 under OS X 10.7.1
- OpenJDK 1.6.0_18 x64 on Debian 6.0.2 (2.6.32)
- Apache Wicket 1.4.17
- Oracle Glassfish 3.1.1
- JBoss Hibernate 3.6.5
DomainObject code:
public class AssetComponentDetailTemplate extends BaseEntite<Long> { public enum DataType { TXT, DATE, INT, JOIN, LIST, COULEURS, REFERENCE } public enum Tab { IDENTITE, LOCALISATION, CYCLE_DE_VIE, FINANCE, RESEAU, DETAIL } @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @Column(nullable = false) private String name; @Column(nullable = false) @Enumerated(EnumType.STRING) private DataType dataType; private Integer classNameId; private Long orderId; private Long nextAssetComponentDetailTemplateId; private String unit; @Enumerated(EnumType.STRING) private Tab tab; @Column(nullable = false) private Long uniqueOrganizationId; @OneToMany(fetch = FetchType.LAZY) @JoinColumn(name = "idAssetComponentDetailTemplate", insertable = false, updatable = false) private List<AssetComponentDetailJoin> assetComponentDetailJoins; private Boolean mandatory = false; public AssetComponentDetailTemplate() { } public Long getId() { return id; } public void setId(final Long id) { this.id = id; } public String getName() { return name; } public void setName(final String name) { this.name = name; } public DataType getDataType() { return dataType; } public void setDataType(final DataType dataType) { this.dataType = dataType; } public Integer getClassNameId() { return classNameId; } public void setClassNameId(final Integer classNameId) { this.classNameId = classNameId; } public Long getUniqueOrganizationId() { return uniqueOrganizationId; } public void setUniqueOrganizationId(final Long uniqueOrganizationId) { this.uniqueOrganizationId = uniqueOrganizationId; } public Long getNextAssetComponentDetailTemplateId() { return nextAssetComponentDetailTemplateId; } public void setNextAssetComponentDetailTemplateId(final Long nextAssetComponentDetailTemplateId) { this.nextAssetComponentDetailTemplateId = nextAssetComponentDetailTemplateId; } public String getUnit() { return unit; } public void setUnit(final String unit) { this.unit = unit; } public Tab getTab() { return tab; } public void setTab(final Tab tab) { this.tab = tab; } public Long getOrder() { return orderId; } public void setOrder(final Long order) { this.orderId = order; } public Boolean isMandatory() { return mandatory; } @Override public String toString() { return name; } @Override public boolean equals(final Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } final AssetComponentDetailTemplate that = (AssetComponentDetailTemplate) o; if (classNameId != null ? !classNameId.equals(that.classNameId) : that.classNameId != null) { return false; } if (dataType != that.dataType) { return false; } if (id != null ? !id.equals(that.id) : that.id != null) { return false; } if (name != null ? !name.equals(that.name) : that.name != null) { return false; } if (nextAssetComponentDetailTemplateId != null ? !nextAssetComponentDetailTemplateId.equals(that.nextAssetComponentDetailTemplateId) : that.nextAssetComponentDetailTemplateId != null) { return false; } if (orderId != null ? !orderId.equals(that.orderId) : that.orderId != null) { return false; } if (tab != that.tab) { return false; } if (uniqueOrganizationId != null ? !uniqueOrganizationId.equals(that.uniqueOrganizationId) : that.uniqueOrganizationId != null) { return false; } if (unit != null ? !unit.equals(that.unit) : that.unit != null) { return false; } return true; } @Override public int hashCode() { int result = id != null ? id.hashCode() : 0; result = 31 * result + (name != null ? name.hashCode() : 0); result = 31 * result + (dataType != null ? dataType.hashCode() : 0); result = 31 * result + (classNameId != null ? classNameId.hashCode() : 0); result = 31 * result + (orderId != null ? orderId.hashCode() : 0); result = 31 * result + (nextAssetComponentDetailTemplateId != null ? nextAssetComponentDetailTemplateId.hashCode() : 0); result = 31 * result + (unit != null ? unit.hashCode() : 0); result = 31 * result + (tab != null ? tab.hashCode() : 0); result = 31 * result + (uniqueOrganizationId != null ? uniqueOrganizationId.hashCode() : 0); return result; }