本の中で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」に配置します。しかし、次のURLは私には機能しないようです:http:// localhost:8080 / priceing
ここに何か足りないものがありますか?