[Eclipse] Access restriction: Class is not accessible due to restriction on required library - Digizol6

Post Top Ad

Responsive Ads Here

Post Top Ad

Tuesday, September 9, 2008

[Eclipse] Access restriction: Class is not accessible due to restriction on required library

Responsive Ads Here
"Access restriction: Class is not accessible due to restriction on required library"; error message may be shown while developing Java projects in Eclipse IDE. Error message is self-explanatory, some classes can not be loaded into the project since restriction rules are being imposed on those classes.

How to solve

This error message can be removed by changing a setting inside Eclipse IDE. Open up the dialog box shown below, using any of the following paths.
  • Windows -> Preferences -> Java -> Compiler -> Errors/Warnings
  • (Project) Properties -> Java Compiler -> Errors/Warnings
Eclipse+Access+restriction+rulesLocate the "Forbidden reference (access rules)" option under "Deprecated and restricted API" section in the dialog box. This option decides how to handle access rules defined inside Eclipse. By default it is set to "Error" which causes Eclipse to complain about references to any restricted classes. Choosing any other option (Warning or Ignore) will remove these error messages.

"Warning" or "Ignore" options will only hide the potential issue in the project, by allowing the project to use any classes ignoring predefined access rules. To completely resolve this issue, analyze the project and located the use of restricted classes and take necessary actions (either remove those references or access rules).

Related Articles

155 comments:

  1. blank

    This is exactly what I searched for, thanks.

    ReplyDelete
  2. blank
  3. blank
  4. blank

    thanks for your post. Solved my problem!

    ReplyDelete
  5. blank
  6. blank

    thanks for the post....solved my problem!!

    ReplyDelete
  7. blank

    Thanks for this, exactly what has been annoying me for for weeks.

    ReplyDelete
  8. blank

    thanks, this saved my time.

    ReplyDelete
  9. blank
  10. blank

    I don't understand what these restrictions are, but thanks for the tip - made my day.

    ReplyDelete
  11. blank

    Wow...I have been searching all over the place for this answer. Thanks for posting this.

    ReplyDelete
  12. blank

    Thanks a lot. It resolved my issue

    ReplyDelete
  13. blank

    Wonderful, this one was driving me crazy !

    ReplyDelete
  14. blank

    This post does not appear to provide a satisfactory solution to the problem, but merely explains how to make the warning go away. If you see the error "Access restriction: The method (name) from the type (class) is not accessible due to restriction on required project (project)" can be solved by 1) Right click on the project with the problem and select "properties"; 2) Select "Java Build Path"; 3) Expand "Plug-in Dependencies" and expand the project causing the problem; 4) Expand "Access rules" and modify them to ensure the referenced class is accessible.

    ReplyDelete
  15. blank

    Good.Quick and Neat help.........
    Thanks

    ReplyDelete
  16. blank

    The post by Anonymous on March 27, 2009 1:59AM does not solve the problem either. By modifying the Access Rules you are simply hiding the problem. The Access Rules are there for a reason and you need to fix the problem. If you don't, you are probably in violation of the Java license.

    ReplyDelete
  17. blank

    A BIG problem, with a SIMPLE solution.

    Thanks a lot.

    ReplyDelete
  18. blank

    I encountered this when creating a maven apache cxf prototype. The problem was not fixable by changing access rules for the library because these were not modifiable. The solution for me was to use a newer JDK or change the Order/Export (I think this is class loader order) so the Maven-supplied jaxb-api2.1.jar was used. The workspace Java 1.5 system library was not correctly exporting the javax.jws.* package. My approach was just to change the system library to a 1.6 one.

    ReplyDelete
  19. blank

    Brilliant, mate! Helped me too. Thanks!

    ReplyDelete
  20. blank
  21. blank

    The Anonymous of March 27, 2009 1:59 AM was right. The other way to do the same things is to use plugin editor and add there on Runtime page the project/package you want to get from the class with error. This will allow the package to export. But this solution makes sense only for those who works with several projects of their own (like in case of plug-ins development). In simple cases when the error doesn't say anything to you the suggested by Kamal way is possibly one you are looking for. And then don't mess with the restriction editing.

    ReplyDelete
  22. blank

    thansk for your help

    ReplyDelete
  23. blank

    Great. You save me! :)

    ReplyDelete
  24. blank

    Saved my precious time! Thanks!

    ReplyDelete
  25. blank

    The post by Mick (June 18, 2009 4:13 PM) solved my problem. thanks!
    My problem is "Access restriction to all class in /usr/java/zenith_jdk1.6.0_04/jre/lib/rt.jar".
    The solution for me was to change the (Project) Properties -> Order/Export (I think this is class loader order), I just moved the "JRE System Library [zenith_jdk1.6.0_04]" above others.

    ReplyDelete
  26. blank

    that was really helpful ...thanks a lot

    ReplyDelete
  27. blank
  28. blank

    THANK YOU!!!! SOOO MUCHHHH!!! YOU SAVE MY LIFE!!!

    ReplyDelete
  29. blank
  30. blank
  31. blank

    Still useful a whole year later. Thanks!

    ReplyDelete
  32. blank

    Thanks Dude .. I was bugged with the problem and wasted a lot of time on it .. went through a number of posts .. but finally this is what I was looking for ..
    Thnx once again

    ReplyDelete
  33. blank
  34. blank

    I'm using Eclipse with JMF's just been installed. I don't like to hide this error. I'd like to resolve it completely. Anyone helps me?

    ReplyDelete
  35. blank

    Obrigado.
    esta foi uma exelente ajuda.

    ReplyDelete
  36. blank

    Thanks for this post ;-)

    ReplyDelete
  37. blank

    My problem was solved when I put the JDK at the end of the "Order and Export".

    ReplyDelete
  38. blank

    thanks you help me solve this problem

    ReplyDelete
  39. blank

    Excellent, You save me a lot of time.

    ReplyDelete
  40. blank

    "My problem was solved when I put the JDK at the end of the "Order and Export".
    Totally, its really strange why eclipse fails to load classes that are below the JRE.

    ReplyDelete
  41. blank

    Here another fix this issue:
    I get the "Access restriction: The type xxxxx is not accessible due to restriction on required project.." compilation error ¶

    * If you just created a new service interface, then you probably forgot to add it in the "Exported Packages" of the .services project.
    * If you encounter rt.jar Restrictions (on com.sun... classes for example) - these seem to be built-in Restrictions of Eclipse 3.3/OSGi and indicate you are doing something deprecated in OSGi. Try to do it "the right way".

    ReplyDelete
  42. blank
  43. blank
  44. blank

    Thanks for post, it helped, but I would like to fix this problem like Emerald214 (October 12, 2009 11:10 AM)
    "I'm using Eclipse with JMF's just been installed. I don't like to hide this error. I'd like to resolve it completely. Anyone helps me? ".

    What do I need to do then? I'm using JMF too...

    ReplyDelete
  45. blank

    Thank u very much..this was actually am looking for,,,

    ReplyDelete
  46. blank

    Although this doesn't tell me why I got this error, it does tell me how to successfully ignore it until I have time to figure it out, which is great. Thanks for saving me a lot of time.

    ReplyDelete
  47. blank

    I still had the problem. Not getting solved. Could you please help me with detailed steps.
    Access restriction: The type Vector3d is not accessible due to restriction on required library C:\Program Files (x86)\Java\jre1.5.0_06\lib\ext\vecmath.jar

    ReplyDelete
  48. blank
  49. blank

    Thanks Mike for the direction.

    This is how I did in Eclipse 3.5:
    Right Click on Project and select Properties -> Java Build Path -> Libraries (Tab)

    expand the rt.jar and see where you have forbidden access (**/*) in my case.

    Now edit "access rules" -> Add -> Resolution = "Accessible" and Rule Pattern = **/*

    Click OK and you are done.

    ReplyDelete
  50. blank
  51. blank

    This is exactly the kind of article I like to find when I have a problem. I's short, accurate, and does the job -- thanks.

    ReplyDelete
  52. blank

    Thanks...It worked !!!! :)

    ReplyDelete
  53. blank

    thank you very much

    ReplyDelete
  54. blank
  55. blank

    As a newbie in java, it took to much time to find this simple solution.
    Thank you very much ;)

    ReplyDelete
  56. blank

    thanks for the post, works perfect!

    ReplyDelete
  57. blank

    God bless you, I was desperatly. My message said "Access restriction: TYPE is not accessible due to restriction on required library" instead of class but worked for me too.

    Thanks a lot

    ReplyDelete
  58. blank

    Thanks a lot. Your comments helped me.

    ReplyDelete
  59. blank

    It really helped me. Thanks.

    ReplyDelete
  60. blank
  61. blank

    Man...

    Thank you very much. You've saved my soul!

    xD

    ReplyDelete
  62. blank
  63. blank

    Proposed solution works correctly.
    Hal

    ReplyDelete
  64. blank

    Perfect. Thank you so much.

    ReplyDelete
  65. blank
  66. blank
  67. blank
  68. blank

    thanks, very helpful

    ReplyDelete
  69. blank
    Erval Goncalves JuniorJuly 18, 2010 at 9:34 PM

    Thanks Kamal !!!

    ReplyDelete
  70. blank

    Thank you very much for this tip. We encountered this problem while using Eclipse Helios IDE.

    -- Ravi & Jayesh

    ReplyDelete
  71. blank
  72. blank
  73. blank

    Thanks !

    Had the same problem (with maven) :
    Access restriction: The type XXX is not accessible due to restriction on required library C:\bin\dvlp\java\jdk1.6.0_07\jre\lib\rt.jar

    ReplyDelete
  74. blank

    Thank you!!! You solved my problem!! thanks again!!

    ReplyDelete
  75. blank

    Excellent solution for my confusion

    Thanking you

    ReplyDelete
  76. blank

    awesome. I was almost getting really angry with this problem. I tried to get access to jai-core.jar. Thanks!

    ReplyDelete
  77. blank

    thanks very much!!! it's just great!

    ReplyDelete
  78. blank

    Thank you very much, this is the only resource I could find on the internet which told me how to deal with problem

    Thank you very much

    ReplyDelete
  79. blank

    Cool!
    I was stucked!

    It saved me!

    ReplyDelete
  80. blank
  81. blank

    thanks buddy, this is the correct solution
    ELio

    ReplyDelete
  82. blank
  83. blank

    Excelent !!!!

    Does anybody Know how to perform that configuration on Windows Registry ?
    ( or at some file ? )

    ReplyDelete
  84. blank

    This is exactly what I searched too !! Thank you.

    ReplyDelete
  85. blank

    Simple solution. I was looking for this for many days.

    Thanks .

    ReplyDelete
  86. blank

    Thanks for all the comments...
    For my case: I just recreated the project and everything is working...

    ReplyDelete
  87. blank
  88. blank

    Many thanks Kamal. You have just made my day with this....

    ReplyDelete
  89. blank

    It's great. I was looking into the read/write permissions for the lib. Thanks for the post and saved lot of time.

    ReplyDelete
  90. blank
  91. blank
  92. blank
  93. blank
  94. blank

    Thanks for posting. Helped me a lot!

    ReplyDelete
  95. blank

    Still relevant. Thanks.

    ReplyDelete
  96. blank
  97. blank

    Answer No. 42 helped me.

    ReplyDelete
  98. blank
  99. blank

    THANK YOU VERY MUCH FROM SPAIN.

    ReplyDelete
  100. blank

    Great, Fantastic, Thank you so much

    ReplyDelete
  101. blank
  102. blank

    Thanks, Its really nice answer.....

    ReplyDelete
  103. blank

    Another way of solving this issue is to delete JRE and install another JRE and change the JRE for the workspace, it will start working. :)

    Tkish

    ReplyDelete
  104. blank

    Thanks a ton.....!! U saved my time..!!

    ReplyDelete
  105. blank

    Thanks, your solution is good

    ReplyDelete
  106. blank

    thank you very much.

    ReplyDelete
  107. blank

    Thanks a lot.
    This is exactly what I was looking for.

    ReplyDelete
  108. blank

    Thank You for the help!!

    ReplyDelete
  109. blank

    Finally, two days looking for a solution. Thanks

    ReplyDelete
  110. blank

    Thank you very much for the informations;
    My code si working but it keep on give me warnings! I can't modify my access rules on jmf.jar library.

    ReplyDelete
  111. blank

    Thank you for this article; now I can run my code even if I still have some wornings because I can't edit access rules on jmf.rar
    If I'll be able to modify this permissions I'll give you news :)

    ReplyDelete
  112. blank
  113. blank

    This is exactly what I searched for, thanks...
    u rock

    ReplyDelete
  114. blank
  115. blank
  116. blank
  117. blank

    Thanks for the help mate.

    ReplyDelete
  118. blank
  119. blank

    Thanks a lot, this helped to resolve my problem

    ReplyDelete
  120. blank
  121. blank
  122. blank
  123. blank

    Thanks! This was driving me nuts.

    ReplyDelete
  124. blank
  125. blank
  126. blank

    I think the comment number 41 is the best solution to this problem....

    ReplyDelete
  127. blank

    Thanks a lot for this post.

    ReplyDelete
  128. blank
  129. blank

    Make sure you never "export" de plugin dependencies.

    So go over all required plugins and check that they are not exporting their plugin dependencies.

    ReplyDelete
  130. blank

    Thanks it helped me and
    saved my time

    ReplyDelete
  131. blank

    My JUnit tests today were giving me this error all day. I wasn't finding answers and hours have gone by.

    Reading your solution left me questioning if this was actually a non-issue. Upon following your guide I was able to compile the code and tests were acting as expected. I will continue to look into this warning and thank you for your post!

    ReplyDelete
  132. blank
  133. blank

    Thanks man.........It really helped me. Keep it up.

    ReplyDelete
  134. blank

    Today is 2014... and your post still helps people! Thank you, mate!

    Cristiano

    ReplyDelete
  135. blank
  136. blank

    This helped me a lot! Thanks :)

    ReplyDelete
  137. blank

    You rock, this was driving me crazy

    ReplyDelete
  138. blank
  139. blank

    Thanks Dude.
    it really saved lot of time.

    ReplyDelete
  140. blank
  141. blank

    Thanks, It resolved my issue...

    ReplyDelete
  142. blank

    thanks for your post.this saved my time,and solved my problem.

    ReplyDelete
  143. blank

    thanku very very much

    ReplyDelete
  144. blank

    Sir Thank you very much....Salute to you Sir....

    ReplyDelete
  145. blank
  146. blank
  147. blank

    cool...Thx!
    Joel Design

    ReplyDelete
  148. blank

    Thank you very much...............................

    ReplyDelete
  149. blank

    Thank you very much....

    ReplyDelete
  150. blank

    Çok teşekkür ederim
    :):)

    ReplyDelete
  151. blank

    please help me i'm only one who can't solve this probléme i have this probléme

    Exception in thread "main" java.lang.Error: Unresolved compilation problem:
    The method JToolBar() is undefined for the type InterfaceGraphique







    ReplyDelete
  152. blank
  153. blank
  154. blank

    thank you for the post . i solve the problem

    ReplyDelete

Post Top Ad