Engine静态文件模式处理程序Java相当于什么

Engine静态文件模式处理程序Java相当于什么

本文介绍了GAE Google App Engine静态文件模式处理程序Java相当于什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我想为应用程序使用Java,但我还没有找到对于python(https://developers.google.com/appengine/docs/python/config/appconfig#Static_File_Pattern_Handlers)显示等效的静态文件模式匹配。

 处理程序:
- url:/item-(.*?)/category-(.*)
static_files:archives / \ 2 / items / \ 1

在配置中是否存在与Java应用程序匹配的静态文件模式?



Thanks。

解决方案

不,在GAE java配置中没有Url重写规则。



然而,您可以编写自己的Url重写器过滤器,或使用现有的。


I'm new to Google App Engine/ Java / Python.

I would like to use Java for an app, but I have not yet been able to find the equivalent static file pattern matching like is shown for python (https://developers.google.com/appengine/docs/python/config/appconfig#Static_File_Pattern_Handlers)

    handlers:
- url: /item-(.*?)/category-(.*)
  static_files: archives/\2/items/\1

Is there static file pattern matching in the config for Java applications?

Thanks.

解决方案

No, there are no Url rewriting rules in GAE java configuration.

However you can write your own Url rewriter filter or use an existing Url rewriter.

这篇关于GAE Google App Engine静态文件模式处理程序Java相当于什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 11:20