如何将 angular2 与弹簧靴一起使用

Posted

技术标签:

【中文标题】如何将 angular2 与弹簧靴一起使用【英文标题】:How to use angular2 with spring boot 【发布时间】:2017-05-17 03:29:01 【问题描述】:

我想开发一个以 angular2 作为前端,spring boot 作为后端的应用程序。据我所知,有两种方法可以实现这一目标 1)创建一个angular2应用程序并使用rest调用与spring boot应用程序通信。 2)在spring boot maven应用程序的资源文件夹中有angular2文件作为UI部分。

这是最好的方法。

提前致谢。

【问题讨论】:

【参考方案1】:

我发现使用 Spring Boot 设置 Angular 2 的最佳教程是 Angular2 and Spring Boot

在本教程中,他使用了 maven 模块。一个用于 spring boot 后端,一个用于 angular2 前端。

因此,要使用选项 2,您只需使用教程中的 angular cli 并将其指向资源文件夹(最好是您创建的文件夹...即 ui-resources 或其他东西),然后将其设置为资源在你的 Maven pom.xml 中。即

<resource>
    <directory>src/main/ui-resources</directory>
    <excludes>
        <exclude>node_modules/**</exclude>
    </excludes>
 </resource>

希望有帮助!

【讨论】:

以上是关于如何将 angular2 与弹簧靴一起使用的主要内容,如果未能解决你的问题,请参考以下文章

混合弹簧靴与redis

使用弹簧靴时出现403,但与邮递员配合良好[重复]

如何使用弹簧靴执行器?官方步骤无效

如何在项目中集成弹簧靴

text 弹簧靴的Gradle模板。展示如何使用集成测试

如何在百里香弹簧靴中填充选择元素?