我有一个使用Java,Jersey,Spring和Angular的Web应用程序。所有API都通过泽西岛通过此网址“http://localhost:8080/webapp/api/”公开。
但是,当我使用Angular时,我需要通过“http://localhost:8080/webapp/index.html”和admin index.html通过“http://localhost:8080/webapp/admin/index.html”提供index.html文件。我想知道实现这一目标的最佳方法。
Jersey已经使用了servlet,所以我想使用这个servlet来为index.html服务,但我不喜欢这个想法,因为我会在同一个servlet中混合使用api和html。
所以,第二个选项是创建另一个servlet来提供这个index.html。
我愿意接受建议。
感谢。