-1

我在 eclipse 中创建了动态 web 项目并添加了 index.jsp 文件,显然那是我的欢迎页面。我已经在 web.xml 中添加了它,我正在使用 angular js 进行前端界面管理。

这是我的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" metadata-complete="false" version="3.0">
<welcome-file-list>

    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>
    <servlet>
    <description></description>
    <display-name>ValidateLogin</display-name>
    <servlet-name>ValidateLogin</servlet-name>
    <servlet-class>ValidateLogin</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>ValidateLogin</servlet-name>
    <url-pattern>/ValidateLogin</url-pattern>
  </servlet-mapping>

</web-app>

现在我的问题是当我运行项目时,它显示正在加载而不是打开任何内容。但是如果我在浏览器地址栏中添加了项目 url+index.jsp 则页面加载成功。我在角度 js 脚本中使用路由提供程序,如下所示

应用程序.js

var myApp = angular.module('myApp', [
    'ngRoute',
    'appController'
    ]);

myApp.config(['$routeProvider',function ($routeProvider) {

    $routeProvider.
    when('/home', {
        templateUrl: 'views/login.jsp',
        controller: 'LoginController'
    }).
    when('/main', {
        templateUrl: 'views/Home.jsp',
        controller: 'MainController'
    }).
    otherwise({ redirectTo: '/home' });

}]);

这是我的目录结构

在此处输入图像描述

什么问题?谁能回答?

4

3 回答 3

0
<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

在索引中添加.jsp 扩展

确保您的 index.jsp 在 WEB-INF 文件夹之外

为了访问 jsp,正确的 url 将

http://localhost:8080/ProjectName/index.jsp

根据您的服务器更改端口号。您需要提供项目 url 以访问 jsp。假设您在服务器上部署了 4 个项目,每个项目都有 index.jsp。如果您不提供项目 url,容器将如何确定要运行哪个 index.jsp。

于 2015-04-30T10:51:02.840 回答
0
  1. 确保welcome-file 属性是这样提到的:index.jsp

  2. 确保 index.jsp 与 WEB-INF 并行存在。

希望这有效。

于 2015-04-30T11:01:21.057 回答
0

您提到了没有任何文件扩展名的欢迎文件

     <welcome-file>index</welcome-file>

只需添加带有文件扩展名的有效欢迎页面,如果您的文件可能是 index.jsp

   <welcome-file>index.jsp</welcome-file>

并且您的 $routeProvider 配置不会影响您在 web.xml 中提到的欢迎页面加载。路由提供程序仅在加载 Angular js 后才会影响...

于 2015-04-30T10:52:29.053 回答