0

この問題を調査するのにうんざりしていて、適切な答えが見つかりません。実際、Java 11 と Spring を使用している人はいませんでした。私のJSPがロードされていません。それは単にそれです。私のプロジェクトに関するいくつかの情報:

Spring Boot version: 2.0.5.RELEASE
Java version: 11
Gradle: 4.10.2

これらは私のapplication.ymlプロパティです:

server:
  contextPath: /mypath
  port: 9012
  display-name: my app
  error:
    whitelabel:
      enabled: true
  tomcat:
    compression: on
    compressableMimeTypes: application/json,application/xml,text/html,text/xml,text/plain
    # springboot 1.3+ compression
#    compression:
#      enabled: true
#      mime-types: application/json,application/xml,text/html,text/xml,text/plain
    # enable HTTPS when running behind a proxy server
    remote_ip_header: x-forwarded-for
    protocol_header: x-forwarded-proto
  use-forward-headers: true
  # session timeout
  session:
    # spring time out set to 2hrs.
    cookie:
      max-age: 7200
    timeout: 7200
  # enabling SSL/HTTPS with spring boot
  ssl:
    enabled: true
    key-store: /mykeystorepath/keystore.ks
    key-store-password: password
    key-store-type: JKS
    key-alias: selfsigned

http:
  mappers:
    jsonPrettyPrint: true

multipart:
  maxFileSize: 500MB
  maxRequestSize: 500MB
  fileSizeThreshold: 0

spring:
  application:
    name: appname
  jmx:
    enabled: true
    default-domain: ${spring.application.name}
  http:
    # enable and force http encoding support.
    encoding:
      enabled: true
      charset: UTF-8
      force: true
  mvc:
    favicon:
      enabled: true
    view:
      prefix: /WEB-INF/jsp/
      suffix: .jsp

management:
  server:
    port: 9512
  endpoints:
    web:
      base-path: /manage

swagger:
  enable: false

endpoints:
  shutdown:
    enabled: true

#logging:
#  level:
#    org:
#      springframework:
#        web: DEBUG

私のjspファイルは次の場所にあります:

/parent-project-folder/my-app/src/main/webapp/WEB-INF/jsp/

私の主なクラス:

@SpringBootApplication(exclude = { SecurityAutoConfiguration.class })
public class Application extends SpringBootServletInitializer {

    /** The log. */
    private static final Logger LOG = LoggerFactory.getLogger(Application.class);

    /**
     * The main method.
     *
     * @param args the arguments
     */
    public static void main(String[] args) {
        SpringApplication springApplication = new SpringApplication(Application.class);
        springApplication.addListeners(new ApplicationPidFileWriter(System.getProperty("user.home") + File.separator + "app.pid"));
        springApplication.run(args);

        LOG.info("--------------------------------------------------------------");
        LOG.info("--------- application startup complete --------");
        LOG.info("--------------------------------------------------------------");
    }

    /*
     * (non-Javadoc)
     *
     * @see org.springframework.boot.web.support.SpringBootServletInitializer#configure(org.springframework.boot.builder.SpringApplicationBuilder)
     */
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(Application.class);
    }

}

WEB-INF フォルダーを /src/main/resources の下に配置しようとさえしました。

次に、これは私の依存関係のリストです (単なる下書きのコピーと貼り付け):

apply plugin: 'war'

    compile 'javax.servlet:jstl:1.2'
classpath 'gradle.plugin.com.gorylenko.gradle-git-properties:gradle-git-properties:1.4.17'
        classpath "org.springframework.boot:spring-boot-gradle-plugin:2.0.5"
        classpath "com.netflix.nebula:gradle-ospackage-plugin:4.4.0"
        classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.5.4"
        classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
        classpath "gradle.plugin.com.github.spotbugs:spotbugs-gradle-plugin:1.6.4"
        classpath 'com.github.samueltbrown:gradle-cucumber-plugin:0.5'

compile 'org.glassfish.corba:glassfish-corba-omgapi:4.2.0-b004'
        compile 'org.jboss.spec.javax.xml.soap:jboss-saaj-api_1.3_spec:1.0.6.Final'
        runtime 'org.springframework.boot:spring-boot-properties-migrator'
        compile 'javax.xml.bind:jaxb-api:2.3.0'
        compile 'com.sun.xml.bind:jaxb-core:2.3.0.1'
        compile 'com.sun.xml.bind:jaxb-impl:2.3.0.1'
        compile 'javax.activation:activation:1.1.1'
        runtime 'javax.activation:javax.activation-api:1.2.0'

        compile 'javax.inject:javax.inject:1'
        compile 'org.apache.commons:commons-lang3:3.7'
        compile "org.springframework.boot:spring-boot-starter-actuator"
        compile "org.springframework.boot:spring-boot-starter-security"
compile (group: 'org.owasp.esapi', name: 'esapi', version:'2.1.0.1') {
                exclude group: 'org.apache.xmlgraphics'
            }

            compile "com.google.code.gson:gson:${gsonVersion}"
            compile 'taglibs:standard:1.1.2'
            compile 'org.apache.tomcat.embed:tomcat-embed-jasper'

            compile 'org.springframework.boot:spring-boot'
            compile "org.springframework.cloud:spring-cloud-starter-config"
            compile "org.springframework.boot:spring-boot-starter-web"
            compile "org.springframework.boot:spring-boot-starter-tomcat"
            compile "org.springframework.boot:spring-boot-starter-logging"
            compile 'com.mangofactory:swagger-springmvc:1.0.2'

            runtime  group: 'ph.samson.logback', name: 'logback-luhn-mask', version:'1.0.1'

            compile 'org.apache.xmlgraphics:batik-css:1.10'
            compile 'commons-beanutils:commons-beanutils-core:1.8.3'
            compile 'commons-fileupload:commons-fileupload:1.3.3'
            compile 'xalan:xalan:2.7.2'
            compile 'commons-httpclient:commons-httpclient:3.1'
            compile 'org.owasp.antisamy:antisamy:1.5.7'

ルートに login.jsp があり、これはhttps://localhost:9012/mypath/login.htmlのようにできるはずですが、ロードされません。

11月23日金曜日の更新

私はいくつかの進歩を遂げています。アプリについて詳しく説明します。もともとこのアプリは、私の開発用に Java 1.8 と Spring 1.5.9.RELEASE と BOM を使用して作成されました。アプリには、このパスの下に GET コントローラーがありました: "/login"。そして、ここにトリッキーな部分があります。URL「 https://www.myapp.com/login.htm 」にアクセスするたびに、どういうわけか/どういうわけか私には理解できませんが、Spring はそれを管理して「 login.htm" をコントローラ "/login" に追加します。余分な「.htm」がどのように認識されたかはわかりません。

現在、Java 11 と Spring 2.1.0.RELEASE を使用しているため、これは機能しなくなりました。「/login」を押すと、コントローラーに移動します。しかし、透過的な移行を行う必要があり、ロジックを変更することはできません。このアプリはリクエストを処理し、クライアント側は何年も前から "/login.htm" を使用しています。「/login.htm」を「/login」に移動する必要があります。

4

1 に答える 1

0

Tomcat でアプリケーションを実行しているようです。したがって、使用するJavaのバージョンを確認してください。バージョンがアプリケーションの Java バージョンよりも古い場合、Tomcat はそれを実行しません。

于 2018-11-29T15:26:08.890 に答える