AFAIK there is no such thing as aop.properties. Have you just made this up? The hint means you should specify the property as a JVM command line parameter like this, if the given path can be resolved as a Java resource path/URL:
java ... -Dorg.aspectj.weaver.loadtime.configuration=META-INF/myaop.xml ...
If you explicitly want to point to the file system, you have to precede the path by file:
, e.g.
java ... -Dorg.aspectj.weaver.loadtime.configuration=file:META-INF/myaop.xml ...
or
java ... -Dorg.aspectj.weaver.loadtime.configuration=file:c:\my\path\META-INF\myaop.xml ...
Attention: no white space between -D
and the property name!
Update:
What does "use the system property" mean?
Your favourite search engine will lead you to pages like:
- Oracle Java tutorial
System
Javadoc, specifically methods
getProperties()
,
getProperty(String)
,
getProperty(String, String)
,
setProperties(Properties)
,
setProperty(String, String)
,
clearProperty()