heroku路由不完整url模式设置不正确

时间:2019-03-27 00:43:10

标签: eclipse heroku url-pattern

我已经在Eclipse上部署了一个eclipse ee动态Web项目,该项目已转换为mavin项目。不幸的是,我的路线不太正确。

要启动该应用程序,我们假设要转到:https://vt5-1.herokuapp.com/,但这不起作用。但是,如果我们转到https://vt5-1.herokuapp.com/VT5,则会显示该应用程序的第一页,但后续重定向无效。

如果我进入我的两个jsp文件,并将在运行Tomcat的eclipse上作为本地服务器运行的<form style='text-align:center;' action='/VT5/VT5' method = 'get' >更改为:<form style='text-align:center;' action='/VT5' method = 'get' >运行https://vt5-1.herokuapp.com/VT5也可以工作并重定向工作,但是现在它赢了不能在日食上工作。

这使我怀疑我没有在web.xml文件中正确设置url模式

这是我的pom和Web xml文件:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>VT5</groupId>
  <artifactId>VT5</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>war</packaging>
  <dependencies>
    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-servlet</artifactId>
      <version>9.4.7.v20170914</version>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.1.0</version>
    </dependency>
  </dependencies>
  <build>  
    <sourceDirectory>src</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.8.0</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
        <version>3.2.1</version>
        <configuration>
          <warSourceDirectory>WebContent</warSourceDirectory>
        </configuration>
      </plugin>
      <plugin>
        <groupId>com.heroku.sdk</groupId>
        <artifactId>heroku-maven-plugin</artifactId>
        <version>2.0.7</version>
        <configuration>
          <appName>vt5-1</appName> 
          <!--<processTypes>
            <web>java $JAVA_OPTS -cp target/classes:target/dependency/* VT5</web>             
          </processTypes> -->        
        </configuration>  
      </plugin>      
    </plugins>
  </build>
</project>

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_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>VT5</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
    <description></description>
    <display-name>VT5</display-name>
    <servlet-name>VT5</servlet-name>
    <servlet-class>VT5</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>VT5</servlet-name>
    <url-pattern>/VT5</url-pattern>
  </servlet-mapping>
</web-app>

0 个答案:

没有答案