0

我刚刚在书中使用 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

例如,我将定价页面 (pricing.html) 放在index.html旁边的“ my-project/src/main/webapp/pricing.html ”中。但以下网址似乎对我不起作用:http://localhost:8080/pricing

我在这里错过了什么吗?

4

1 回答 1

2

您需要将其添加到 Boot.scala: http ://simply.liftweb.net/index-3.2.html

于 2012-05-01T22:10:35.563 回答