|
发表于 2017-3-21 17:19:14
|
显示全部楼层
今天终于得空把nutz baas后台代码部署到eclipse里面,由于我的数据库早已不是wex5自带的数据库,所以没办法用你的前端代码进行测试,只能一点点把你作为案例的几个模块改成我自己数据库配套的内容。
但是需要测试啊,突发奇想,直接用浏览器访问http://localhost:8080/ecoolper/order 竟然报404错误,就这很奇怪了,看了看tomcat启动日志,没有报错:
- 2017-03-21 17:15:17 NutFilter[nutz] starting ...
- 2017-03-21 17:15:17 Nutz Version : 1.r.58
- 2017-03-21 17:15:17 Nutz.Mvc[nutz] is initializing ...
- 2017-03-21 17:15:17 Found 3 classes in 1 base-packages!
- beans = ["foodAction", "foodService", "orderAction"]
- 2017-03-21 17:15:17 NutIoc init begin ...
- 2017-03-21 17:15:17 ... NutIoc init complete
- 2017-03-21 17:15:17 Build URL mapping by org.nutz.mvc.impl.UrlMappingImpl ...
- 2017-03-21 17:15:17 Optional processor class not found, disabled : org.nutz.integration.shiro.NutShiroProcessor
- 2017-03-21 17:15:17 Optional processor class not found, disabled : org.nutz.plugins.validation.ValidationProcessor
- 2017-03-21 17:15:17 Found 4 module methods
- 2017-03-21 17:15:17 Setup application...
- 2017-03-21 17:15:17 Nutz.Mvc[nutz] is up in 144ms
复制代码
请教一下这样算是正常启动了吗?访问地址难道不是http://localhost:8080/ecoolper/order么?我试了http://localhost:8080/ecoolper/order/queryAction也是404错误。 |
|