<@U06U0LB38> can you do a test for me? I'm getting...
# cfwheels
p
@neokoenig can you do a test for me? I'm getting random java.lang.NullPointerException errors after installing the example app. Not sure if it is specific to my machine before I start digging into it I wanted a second set of eyes. To install the app run:
Copy code
wheels g app template=cfwheels-template-example-app --setupH2 name=exampleApp datasourceName=exampleApp directory=exampleapp
Then start the server:
Copy code
start
Once the server starts up, you'll have to install the H2 extension:
Copy code
install
Then after a minute, you can run the migrations:
Copy code
wheels dbmigrate latest
I've also put in an installation check page so the users don't get CF Engine errors during the process.
n
hmm, I actually get this:
Copy code
...

Warning: package has an invalid box.json file. [D:\cfwheels-test\exampleapp\]
Warning: package has an invalid box.json file. [D:\cfwheels-test\exampleapp\]
ah ok I wasn't on the latest branch, let me re-try
Ok, so that all works, until line 140 in the installer:
Copy code
The system cannot find the path specified
Stacktrace	The Error Occurred in
/wheels../views/install/index.cfm: line 140
called from D:\cfwheels-test\exampleapp\wheels\global\cfml.cfm: line 118
called from D:\cfwheels-test\exampleapp\wheels\controller\rendering.cfm: line 649
called from D:\cfwheels-test\exampleapp\wheels\controller\rendering.cfm: line 385
called from D:\cfwheels-test\exampleapp\wheels\controller\rendering.cfm: line 69
called from D:\cfwheels-test\exampleapp\wheels\controller\processing.cfm: line 134
called from D:\cfwheels-test\exampleapp\wheels\controller\processing.cfm: line 92
called from D:\cfwheels-test\exampleapp\wheels\dispatch\functions.cfm: line 199
called from D:\cfwheels-test\exampleapp\wheels\index.cfm: line 6
called from D:\cfwheels-test\exampleapp\rewrite.cfm: line 2
called from D:\cfwheels-test\exampleapp\wheels\events\onrequest.cfm: line 4
It's the route re-writing bit...
If I manually change the root route, it boots!
That's pretty cool tho