单页面应用托管
提醒
体验版特性 ❤️ (预计正式发布于1.5.1-RELEASE)
单页面插件
注册单页面插件,此时默认资源插件行为已被覆盖。该插件默认返回index.html,当指定路由无法找到时,会尝试返回index.html文件。
windward.registerPlugin(
PluginSlot.RESOURCE, new FixedStaticResourcePlugin(windward.getStaticResourceLocations()));
自定义的单页面名称
// 添加了自定义的home文件
FixedStaticResourcePlugin fixedStaticResourcePlugin = new FixedStaticResourcePlugin(windward.getStaticResourceLocations());
fixedStaticResourcePlugin.appendPages("home.html");
