Static files in (Java) App Engine not accessible

前端 未结 4 498
被撕碎了的回忆
被撕碎了的回忆 2021-02-07 17:43

The example documentation says that you simply need to place your files in war/ (or a subdirectory) and they should be accessible from the host (as long as they aren\'t JSPs or

4条回答
  •  南方客
    南方客 (楼主)
    2021-02-07 18:06

    When using e.g tomcat for serving static files one has to specify the patterns like this:

    
        default
        *.css
    
    
        default
        *.js
    
    

    Maybe you could try to do the same?

提交回复
热议问题