All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.young.template.freemarker.FreeMarkerView Maven / Gradle / Ivy

The newest version!
package com.young.template.freemarker;

import java.util.Map;

import com.young.template.View;

import freemarker.template.Template;

public class FreeMarkerView implements View{

	@Override
	public String render(Map model) {
		Template template=Template.getPlainTextTemplate(null, "hi", null);
		return null;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy