我正在尝试运行这个简单的例子 https://github.com/gradle/oreilly-gradle-book-examples/tree/master/web-hello-world
克隆回购后,
cd oreilly-gradle-book-examples/web-hello-world
gradle JettyRun
似乎工作正常
compileJava UP-TO-DATE
:processResources NO-SOURCE
:classes UP-TO-DATE
> Building 75% > :jettyRun > Running at http://localhost:8080/web-hello-world
当我访问该网址时,我只是
Directory: /web-hello-world/
web.xml 555 bytes Jul 30, 2017 4:55:48 PM
所以servlet代码没有被调用。
使用Gradle 3.4.1 有什么想法吗?
谢谢!