[ https://issues.apache.org/jira/browse/CLK-792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13811978#comment-13811978
]
Adrian A. commented on CLK-792:
-------------------------------
Is this still relevant?
IDEs make these days all new classes public by default.
> Create an entry on FAQ about reflection exceptions
> --------------------------------------------------
>
> Key: CLK-792
> URL: https://issues.apache.org/jira/browse/CLK-792
> Project: Click
> Issue Type: Improvement
> Components: documentation
> Affects Versions: 2.3.0
> Reporter: Gilberto C Andrade
> Priority: Minor
> Fix For: 2.4.0-RC1
>
>
> For intermediate java programmer is common to do this trivial error:
> class com.xxxxxxxxClass {
> }
> instead of
> public class com.xxxxxxxxClass {
> }
> Causing this type of execption:
> Caused by: java.lang.IllegalAccessException: Class org.apache.click.util.PropertyUtils
can not access a member of class com.xxxxxxxClass with modifiers "public"
> at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:95)
> So, I'm suggesting the following entry on FAQ:
> question: can not access a member of with modifiers "public"
> answer:
> If you get the following error in Click:
> java.lang.IllegalAccessException: Class org.apache.click.util.PropertyUtils can not access
a member of class com.xxxxxClass with modifiers "public"
> it's likely because your class com.xxxxxxxxClass is not public. You just need to add
a public keyword in front of the class definition
> public class com.xxxxxxxxAction {
> }
--
This message was sent by Atlassian JIRA
(v6.1#6144)
|