terrybondy
terrybondy
Sorry, I can’t. A little too far down the rabbit hole for me. I’m having a problem with latest serverless with a simple ‘hello world’-like maven built java package and...
Well, seeing as you have asked, and realizing this is unrelated to the above issue. Doing this: ``` mkdir simple-http cd simple-http npm init . . . npm install --save-dev...
I will try that then. Then also a problem with https://github.com/serverless/examples/blob/master/aws-java-simple-http-endpoint/README.md that will hopefully get fixed as part of _this_ issue.
Same output as reported above after using these commands: ``` mvn clean install sls invoke local -f hello --log ```
serverless.yml now looks like: ``` service: simple-http frameworkVersion: '2' provider: name: aws runtime: java8 package: artifact: target/hello-dev.jar functions: hello: handler: com.serverless.Handler events: - http: path: users/create method: get ``` and...