You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Michele Vivoda (JIRA)" <ji...@apache.org> on 2015/11/29 01:15:10 UTC

[jira] [Commented] (JXPATH-179) Too much synchronization in JXPathIntrospector

    [ https://issues.apache.org/jira/browse/JXPATH-179?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15030715#comment-15030715 ] 

Michele Vivoda commented on JXPATH-179:
---------------------------------------

https://github.com/apache/commons-jxpath/pull/12

> Too much synchronization in JXPathIntrospector
> ----------------------------------------------
>
>                 Key: JXPATH-179
>                 URL: https://issues.apache.org/jira/browse/JXPATH-179
>             Project: Commons JXPath
>          Issue Type: Improvement
>    Affects Versions: 1.4
>            Reporter: Michele Vivoda
>            Priority: Minor
>              Labels: synchronized, thread-safety
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> The class JXPathIntrospector has been refactored lately to use Collections.synchronizedMap for the static [byClass] and [byInterface] maps, however access to them in code is still synchronized, while I believe it should be not since the synchronized-map methods are already locked on the instance and only one operation is involved. 
> I propose to remove the synchronized keyword from the following blocks:
> https://github.com/apache/commons-jxpath/blob/trunk/src/java/org/apache/commons/jxpath/JXPathIntrospector.java#L71
> https://github.com/apache/commons-jxpath/blob/trunk/src/java/org/apache/commons/jxpath/JXPathIntrospector.java#L89
> https://github.com/apache/commons-jxpath/blob/trunk/src/java/org/apache/commons/jxpath/JXPathIntrospector.java#L94
> https://github.com/apache/commons-jxpath/blob/trunk/src/java/org/apache/commons/jxpath/JXPathIntrospector.java#L125
> I also dont' see any reason why findInformant() should be synchronized and propose to make it not synchronized.  Current code does not use any static field so is safe to change and does not prevent creation of duplicate  JXPathBeanInfo instances that however I believe is not relevant.
> https://github.com/apache/commons-jxpath/blob/trunk/src/java/org/apache/commons/jxpath/JXPathIntrospector.java#L177



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)