1

我正在使用 Micronaut 和 Angular 4 构建一个应用程序。

我已将 Micronaut 配置为提供静态资源

micronaut:
    router:
        static:
            resources:
                enabled: true
                mapping: /**
                paths: classpath:public

一切正常(DefaultURL 路由:http://localhost:8080/dashboard)。Angular 应用程序已加载,用户与应用程序交互并正确导航路径。

在控制器中,我将服务器配置为重定向到 index.html。如果服务器中不存在该路径。

@Get("/{[path:[^\\.]*}")
    @Secured(SecurityRule.IS_ANONYMOUS)
    @Produces(MediaType.TEXT_HTML)
    public HttpResponse<?> refresh() {
        return HttpResponse.redirect(URI.create("/index.html"));
    }

但是当用户刷新页面时(例如按 F5)。

如果刷新后当前的 Url 是http://localhost:8080/userdetails/status,Angular 应用程序会转到默认路由http://localhost:8080/dashboard,而不是用户所在的路由http://localhost:8080/userdetails/status "

请帮助我谢谢

4

2 回答 2

3

在下面找到我已实施的工作代码。

@Controller("/")
public class IndexController {
    @Inject
    ResourceResolver res;


    @Get("/{[path:[^\\.]*}")
    @Secured(SecurityRule.IS_ANONYMOUS)
    @Produces(MediaType.TEXT_HTML)
    public HttpResponse<?> refresh(HttpRequest<?> request) {
        StreamedFile indexFile = new StreamedFile(res.getResource("classpath:public/index.html").get());
        return HttpResponse.ok(indexFile);
    }
}
于 2018-10-06T10:02:57.657 回答
1

这是因为您正在重定向到/index.html. 来自先前请求的信息丢失。而不是重定向,您应该直接呈现 html。

有几种工具可以做到这一点,包括使用resourceResolver来解析类路径上的 html。您可以返回一个StreamedFile实例以将流呈现给响应。

可以注入解析器,您可以自己构建流文件。

https://docs.micronaut.io/latest/api/io/micronaut/core/io/ResourceResolver.html https://docs.micronaut.io/latest/api/io/micronaut/http/server/types/files /StreamedFile.html

于 2018-10-04T21:00:44.213 回答