I downloaded revision 48803 of Labkey on Windows 10 and imported into IntelliJ IDEA 2016.3.3. I am also using Apache Tomcat 8.5.11
By default, the Debug Configuration "LabKey Development" contained the following VM options:
-Dcatalina.base="./" -Dcatalina.home="./" -Djava.io.tmpdir="./temp" -Ddevmode=true -ea -Dsun.io.useCanonCaches=false -Xmx1G
When running, this yielded the error:
org.apache.catalina.startup.Bootstrap.initClassLoaders Class loader creation threw exception
java.lang.IllegalArgumentException: The double quote ["] character only be used
to quote paths. It must not appear in a path.
I fixed this by simply removing all the quotes in the VM options. I do not know if they are there intentionally, but I have found this to be a solution to the above error. |