Bootstrap
Bootstrap 即类 application.bootstrap
application.bootstrapfunction Bootstrap:boot_list()
return {
-- Bootstrap.initWaf,
-- Bootstrap.initErrorHandle,
Bootstrap.initRoute,
-- Bootstrap.initView,
-- Bootstrap.initPlugin,
}
end
function Bootstrap:__construct(dispatcher)
self.dispatcher = dispatcher
endfunction Bootstrap:initRoute()
local router = self.dispatcher:getRouter()
local restful_route = restful:new(self.dispatcher:getRequest())
router:addRoute(restful_route, true)
endLast updated