[bs-120] Support for groovy templates
* Added GroovyTemplate.template() utility and static import in webapp CLI, so @RequestMapping("/") @ResponseBody String home(Model model) { template "home.html", model } renders the template in /templates/home.html [Fixes #49832753]pull/1/merge
parent
f73fbfc901
commit
a71bb1c972
@ -0,0 +1,25 @@
|
||||
package org.test
|
||||
|
||||
import static org.springframework.bootstrap.cli.template.GroovyTemplate.template;
|
||||
|
||||
@Component
|
||||
class Example implements CommandLineRunner {
|
||||
|
||||
@Autowired
|
||||
private MyService myService
|
||||
|
||||
void run(String... args) {
|
||||
print template("test.txt", ["message":myService.sayWorld()])
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Service
|
||||
class MyService {
|
||||
|
||||
String sayWorld() {
|
||||
return "World"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,59 @@
|
||||
/*
|
||||
* Copyright 2012-2013 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.bootstrap.cli.template;
|
||||
|
||||
import groovy.text.GStringTemplateEngine;
|
||||
import groovy.text.Template;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.util.Collections;
|
||||
import java.util.Map;
|
||||
|
||||
import org.codehaus.groovy.control.CompilationFailedException;
|
||||
|
||||
/**
|
||||
* @author Dave Syer
|
||||
*
|
||||
*/
|
||||
public class GroovyTemplate {
|
||||
|
||||
public static String template(String name) throws IOException,
|
||||
CompilationFailedException, ClassNotFoundException {
|
||||
return template(name, Collections.<String, Object> emptyMap());
|
||||
}
|
||||
|
||||
public static String template(String name, Map<String, ?> model) throws IOException,
|
||||
CompilationFailedException, ClassNotFoundException {
|
||||
GStringTemplateEngine engine = new GStringTemplateEngine();
|
||||
File file = new File("templates", name);
|
||||
URL resource = GroovyTemplate.class.getClassLoader().getResource(
|
||||
"templates/" + name);
|
||||
Template template;
|
||||
if (file.exists()) {
|
||||
template = engine.createTemplate(file);
|
||||
} else {
|
||||
if (resource != null) {
|
||||
template = engine.createTemplate(resource);
|
||||
} else {
|
||||
template = engine.createTemplate(name);
|
||||
}
|
||||
}
|
||||
return template.make(model).toString();
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1 @@
|
||||
Hello ${message}!
|
Loading…
Reference in New Issue