我刚刚在书中用maven命令创建了一个hello-world项目:
mvn archetype:generate -U \
-DarchetypeGroupId=net.liftweb \
-DarchetypeArtifactId=lift-archetype-blank \
-DarchetypeVersion=1.0 \
-DgroupId=demo.helloworld \
-DartifactId=helloworld \
-Dversion=1.0-SNAPSHOT
按照指示,我从以下开始:
mvn jetty:run
一切正常,直到我想在另一个模板中添加:
my-project/src/main/webapp/index.html
例如,我将 index.html 旁边的定价页面(pricing.html)设置为“ my-project / src / main / webapp / pricing.html ”。但以下网址似乎对我不起作用: http:// localhost:8080 / price
我在这里遗漏了什么吗?