将数据绑定到html页面 - angularJS

时间:2016-09-14 10:35:49

标签: html angularjs spring rest spring-mvc

在Web应用程序方面,我有点新手。我正在使用spring MVC并尝试使用有角度的前端创建一个安静的应用程序。

我的问题是我想在整个应用程序中使用RestfulControllers,但是我如何从中呈现html文件。

例如说我有

@RestController
@RequestMapping("/")
public class IndexController {

@RequestMapping(method = RequestMethod.GET)
public String getIndexPage() {
    return "Dashboard";
}

在正常的控制器中,一旦点击http://localhost:8080/,这将呈现Dashboard.html,但是在RestControllers中并非如此,它只显示字符串' Dashboard'。如何将此数据绑定到html / angular文件 - >我失踪的中间步骤是什么?

由于

0 个答案:

没有答案