Java中利用Freemarker动态给请求模板赋值

开发时,需要调用第三方API,请求参数为XML格式的。我现有以下请求模板,模板中有些字段的值是需要动态传入的。如下图所示:

模板所在位置:

Java中利用Freemarker动态给请求模板赋值_第1张图片

模板twapi_without_birthday_gender.ftl的内容如下:



    ${clientId}
    CUSTOMER
    CREATECASE   
    
        ${benefType}
    
    ${benefName}
    ${feedSourceSystem}
    ${ruleId}

模板中的${clientId}、${benefType}等,每次请求时需要动态赋值。参考代码如下:

public class Test {

	public static void main(String[] args) throws Exception {

		testFreemarker();

	}

	private static void testFreemarker() {
		// 这里的KEY与模板中占位符需保持一致
		Map params = new HashMap();
		params.put("clientId", "123");
		params.put("benefType", "INDIVIDUAL");
		params.put("benefName", "黄飞鸿");
		params.put("feedSourceSystem", "AMAZON");
		params.put("ruleId", "RULE951");
		try {
			Configuration config = new Configuration(Configuration.VERSION_2_3_28);
			config.setDefaultEncoding("UTF-8");
			//也可以这样:config.setDirectoryForTemplateLoading(new File(System.getProperty("user.dir") + "/src/main/resources/templates/"));
			config.setClassForTemplateLoading(Test.class, "/templates/");
			Template template = config.getTemplate("twapi_without_birthday_gender.ftl");
			String apiRequest = FreeMarkerTemplateUtils.processTemplateIntoString(template, params);
			System.out.println("apiRequest==" + apiRequest);
		} catch (Exception e) {
			// TODO: handle exception
			e.printStackTrace();
		}

	}

}

控制台输出结果如下:

Java中利用Freemarker动态给请求模板赋值_第2张图片

 

 

你可能感兴趣的:(Java中利用Freemarker动态给请求模板赋值)