使用 Undertow 的基于文本的处理程序配置格式的示例

Posted

技术标签:

【中文标题】使用 Undertow 的基于文本的处理程序配置格式的示例【英文标题】:Example of using Undertow’s text based handler configuration format 【发布时间】:2015-02-13 09:59:07 【问题描述】:

根据the spec,Undertow 有一个不错的基于文本的配置。

但是我没有看到一行示例代码如何使用这种配置启动 Undertow。

如何使用Undertow.builder()...通过文本配置构建Undertow服务器。

我正在尝试做类似的事情

path-prefix['/api'] -> reverse-proxy['http://myserver.com']
path-prefix['/*'] -> serve-static-files-here-somehow

【问题讨论】:

【参考方案1】:

查看PredicatedHandlersParser 和关联的test case。

【讨论】:

以上是关于使用 Undertow 的基于文本的处理程序配置格式的示例的主要内容,如果未能解决你的问题,请参考以下文章

使用 undertow 文件处理程序重写 URL

开微服务项目tomcat更换成undertow

如何配置 Undertow 以将字符集添加到文本/内容类型?

基于guiceresteasymybatis和undertow实现的轻量级restful服务

在 Undertow 中读取 POST 请求而不使用它

如何在 Undertow 的非阻塞处理程序中执行阻塞代码?