页面刷新时的白色标签错误页面加载(弹簧启动的角度路径)

时间:2017-07-31 11:30:17

标签: javascript angularjs spring-boot ngroute angularjs-ng-route

我正在尝试将spring roue配置添加到spring boots java应用程序中。网址运作良好。问题是当我点击后退按钮或页面刷新时,出现错误。错误说' Whitelabel错误页面 此应用程序没有/ error的显式映射,因此您将此视为后备'。如何使用spring boot配置服务器角度路由。

我的路线配置

    var app = angular.module('myApp',['ngTable','jcs-autoValidate','ngRoute']);

// configure our routes
app.config(function($routeProvider,$locationProvider) {

    $routeProvider
    .when('/test', {
        templateUrl : 'template.jsp'


    })
        .when('/ct', {
            templateUrl : 'ct.jsp',
            controller  : 'myCtrl'

        })
        .when('/qa', {
            templateUrl : 'qa.jsp',
            controller  : 'ourCon'

        })


    $locationProvider.html5Mode(true);
});

我的菜单

 <a href="ct"> CT </a>
 <a href="qa"> QA </a>

如何解决这个问题。

0 个答案:

没有答案