gpt4 book ai didi

java - 如何从 ReSTLet 中读取上下文参数?

转载 作者:行者123 更新时间:2023-11-30 07:39:19 24 4
gpt4 key购买 nike

使用 Restlets 时, 如何读取通过 web.xml 传入的配置参数?使用 servlet,context-param可以使用。如何从 ReSTLet 中读取上下文参数?

最佳答案

来自mailing list :

the init parameters are available in the application's context: getApplication().get​Context().getParamet​ers().

在 web.xml 中:

  <context-param>
<param-name>my.context.param</param-name>
<param-value>Hello World</param-value>
</context-param>

在 ReSTLet 的 represent 方法中,使用:

// => "Hello World"
String result =
getApplication().getContext().getParameters().getFirstValue("my.context.param");

关于java - 如何从 ReSTLet 中读取上下文参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/810171/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com