无法查看部署在wildfly上的页面上的Angular组件。普通的html元素出现了

时间:2019-02-27 13:17:27

标签: angular maven wildfly

我已按照本教程https://dzone.com/articles/building-a-web-app-using-spring-boot-angular-6-and来构建Spring Boot和Angular maven项目。

我设法将其部署到Wildfly服务器并运行该应用程序。

我有HomeController,当我导航到http://localhost:8080/dnd-mm-core/home时,显示index.html,但没有显示组件。

我使用Augury,但页面中没有任何组件。

如果我将普通的html放在index.html中,它将正确显示。

这是我的索引文件:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>DndWebapp</title>
  <base href="/">

  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
  <h4>It works!!!</h4>
  <app-root></app-root>
</body>
</html>

我相信某些配置有问题,因此请提供任何信息,我会提供。

请帮助,谢谢。

编辑:我在Augury控制台中收到此错误:

enter image description here

0 个答案:

没有答案