我正在使用 ActiveWeb 开发一个 Web 应用程序。我想将包从 app.controller 更改为 be.coudron.graphplanner.controller
我创建了一个文件 activewebproperties 并将其放在 src/main/resources
该文件的内容是:
freeMarkerConfig=be.coudron.graphplanner.config.FreeMarkerConfig
bootstrap=be.coudron.graphplanner.config.AppBootstrap
dbconfig=be.coudron.graphplanner.config.DbConfig
route_config=be.coudron.graphplanner.config.RouteConfig
controllerConfig=be.coudron.graphplanner.config.AppControllerConfig
rootPackage=be.coudron.graphplanner
当我使用 mvn jetty:run 启动应用程序时
我得到错误:
org.javalite.activeweb.ControllerException: controller must be
in the 'app.controllers' package
我究竟做错了什么?
代码和包名称中没有拼写错误。