技术咨询、项目合作、广告投放、简历咨询、技术文档下载
点击这里 联系博主
# 获取配置信息,使用java创建Rest服务
以下所有文件均是原创,如需转载请注明作者和链接地址。
# 1、如何读取resource下的配置文件信息
假设resource目录下的文明为properties文件;
//第一步:获取配置文件目录:
File resourcePath=Core.getConfiguration().getResourcesPath();
//第二步:读取对应配置文件,此处可以根据环境的不同读取不同的配置文件
File configFile=new File(resourcePath,"config.properties");
Properties prop = new Properties();
//第三步:读取属性文件到Properties中
InputStream in = new BufferedInputStream (new FileInputStream(configFile));
prop.load(in); ///加载属性列表
Iterator<String> it=prop.stringPropertyNames().iterator();
while(it.hasNext()){
String key=it.next();
System.out.println(key+":"+prop.getProperty(key));
}
in.close();
# 2、如何获取Cookie
String cookies="";
Cookie[] cook=this.context().getRuntimeRequest().get().getHttpServletRequest().getCookies();
for(Cookie c:cook){
cookies+=c.getName()+"="+c.getValue()+";";
}
# 3、如何在java中打Log
private static ILogNode log=Core.getLogger("mylogname");
# 4、如何在mendix启动之前做一下预处理?
只需要在Project》Settings》Runtime》After Startup中调用即可。
# 5、自定义Rest服务
常常使用mendix自带的Rest服务无法满足我们的需求,那么怎么自定义Rest服务呢?自定义Rest服务只需要继承RequestHandler即可。
//第一步:继承RequestHandler,并实现processRequest方法
public class ArticleService extends RequestHandler {
@Override
protected void processRequest(IMxRuntimeRequest iMxRuntimeRequest, IMxRuntimeResponse iMxRuntimeResponse, String path) throws Exception {
}
}
//第二步:在启动整个mendix的时候,调用一个Javaaction,在此Action中进行Rest服务注册。
public java.lang.Boolean executeAction() throws Exception
{
// BEGIN USER CODE
//throw new com.mendix.systemwideinterfaces.MendixRuntimeException("Java action was not implemented");
// 注册自定义服务
Core.addRequestHandler("my/rest",new ArticleService());
return true;
// END USER CODE
}
- 本文链接: https://mrgaogang.github.io/mendix/%E8%8E%B7%E5%8F%96%E9%85%8D%E7%BD%AE%E4%BF%A1%E6%81%AF,%E4%BD%BF%E7%94%A8java%E5%88%9B%E5%BB%BARest%E6%9C%8D%E5%8A%A1.html
- 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 许可协议。转载请注明出处!