gpt4 book ai didi

maven - 如何使用带有 Maven 的 typescript 配置 Angular2 应用程序?

转载 作者:太空狗 更新时间:2023-10-29 16:47:22 27 4
gpt4 key购买 nike

我是 Angular2 的新手。我的项目的技术栈是 Angular2 with typescript and spring 作为后端。我不想按照指示使用节点服务器来编译我的前端,但我需要改用 TOMCAT 和 Maven。我有几个问题。

  1. 我猜节点服务器会为每个 .ts 文件生成 .js 和 .js.map,因为浏览器只能理解 .js 文件。我的理解正确吗?我如何使用 Maven 和 Tomcat 完成这项任务?
  2. 我想使用 Maven 从头开始​​构建我的应用程序。我更喜欢 Bower 作为前端任务管理器。

任何人都可以逐步指导我使用“bower 或任何其他用于前端任务管理的工具,例如文件缩小、创建应用程序脚手架”和“用于后端任务管理的 Maven”来创建 Angular2 + Spring 应用程序吗?我愿意接受任何建议。

最佳答案

我在 Angular 2 + Spring Boot 应用程序中使用 typescript .ts 文件和 Maven。我运行 npm install 获取依赖项,运行 npm run tsc 以通过 exec-maven-plugin 将 .ts 文件转换为 .js。

下面是我的 pom.xml 中的插件部分。在我的应用程序中,pacakge.json、tsconfig.json 和 typings.json 都在 src/main/resources 路径下,所以在该路径下运行 npm 任务

pom.xml

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.5.RELEASE</version>
</parent>

<packaging>war</packaging>


<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>exec-npm-install</id>
<phase>generate-sources</phase>
<configuration>
<workingDirectory>${project.basedir}/src/main/resources</workingDirectory>
<executable>npm</executable>
<arguments>
<argument>install</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
<execution>
<id>exec-npm-run-tsc</id>
<phase>generate-sources</phase>
<configuration>
<workingDirectory>${project.basedir}/src/main/resources</workingDirectory>
<executable>npm</executable>
<arguments>
<argument>run</argument>
<argument>tsc</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>

我的 Angular2 + Spring Boot 应用程序文件夹结构如下所示

src/main/resources
/app - .ts and converted .js
/css
/images
/js - systemjs.config.js is also placed here
/node_modules - generated by npm install and will include in war
/typings
application.properties
package.json
tsconfig.json
typings.json

src/main/webapp
/WEB-INF
/jsp - all .jsp files

在 .jsp 文件头部分,包含 systemjs.config.js

<script type="text/javascript" src="webjars/zone.js/0.6.12/dist/zone.js"></script>
<script type="text/javascript" src="webjars/reflect-metadata/0.1.3/Reflect.js"></script>
<script type="text/javascript" src="webjars/systemjs/0.19.27/dist/system.js"></script>
<script type="text/javascript" src="js/systemjs.config.js"></script>

这里还有我的 WebMvcConfigurerAdapter 代码映射路径

@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "com.my.controller")
public class WebConfig extends WebMvcConfigurerAdapter {

@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
if (!registry.hasMappingForPattern("/webjars/**")) {
registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");
}
if (!registry.hasMappingForPattern("/images/**")) {
registry.addResourceHandler("/images/**").addResourceLocations("classpath:/images/");
}
if (!registry.hasMappingForPattern("/css/**")) {
registry.addResourceHandler("/css/**").addResourceLocations("classpath:/css/");
}
if (!registry.hasMappingForPattern("/js/**")) {
registry.addResourceHandler("/js/**").addResourceLocations("classpath:/js/");
}
if (!registry.hasMappingForPattern("/app/**")) {
registry.addResourceHandler("/app/**").addResourceLocations("classpath:/app/");
}
if (!registry.hasMappingForPattern("/node_modules/**")) {
registry.addResourceHandler("/node_modules/**").addResourceLocations("classpath:/node_modules/");
}
}

@Bean
public InternalResourceViewResolver internalViewResolver() {
InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
viewResolver.setPrefix("/WEB-INF/jsp/");
viewResolver.setSuffix(".jsp");
viewResolver.setOrder(1);
return viewResolver;
}
}

我想提及的一件事是,如果操作系统是 Windows 或 Mac,则在 eclipse 上运行 exec-maven-plugin 有一些技巧。 Linux(Ubuntu) 看起来一点问题都没有。在 Windows 或 Mac 上从 eclipse 运行构建时,问题是它不理解 npm 命令并尝试查找此类文件,即使 maven 构建在终端或命令窗口上完全正常。

为了解决这个问题,我做了一些调整。对于 Mac,在 /usr/bin 路径下为节点和 npm 创建符号链接(symbolic link),如下所示。但是修改/usr/bin是不允许的,所以我通过recovery disk重启完成

lrwxr-xr-x     1 root   wheel        17 May 22 03:01 node -> ../local/bin/node
lrwxr-xr-x 1 root wheel 44 May 22 02:50 npm -> ../local/lib/node_modules/npm/bin/npm-cli.js

对于 Windows,我在系统路径下制作了 node.bat 和 npm.bat 文件,如下所示执行此操作后,maven 在 Windows 10 上从 eclipse 和命令窗口构建完全正常。

npm.bat

@echo off
set arg1=%1
set arg2=%2
set arg3=%3
set arg4=%4
C:\Progra~1\nodejs\npm.cmd %arg1% %arg2% %arg3% %arg4%

关于maven - 如何使用带有 Maven 的 typescript 配置 Angular2 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35704973/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com