当前位置: 首页 > 知识库问答 >
问题:

Thymeleaf StringTemplateSolver 所有变量 null

尹小云
2023-03-14

我正在尝试创建一个概念验证Spring Boot应用程序,它利用Thymeleaf根据属性和请求参数填充字符串结构。我让它使用Model实现工作,但只有当填充的模板是响应时才有效。在这种情况下,我希望在项目中使用填充的模板。



@Controller
@RequestMapping("/poc")
public class InfoController {
    @Autowired
    ThymeleafService thymeleafService;

    @Value("${reportType}")
    private String reportType;

    // This function works - the reportType variable is populated based upon application.properties
    @GetMapping("/map")
    public String testMap(@RequestParam(name = "id", required = false, defaultValue = "2")
                                          String id, Model model){

        model.addAttribute("reportType", "\"" + reportType  + "\"");
        return id + ".json";
    }

    // this function does not work - the reportType variable is null
    @RequestMapping(value = "/map2",method= RequestMethod.POST)
    public String testMap2(@RequestBody MapRequest request, @RequestParam(name = "id", required = false, defaultValue = "2")
            String id, Model model) {
        String output = thymeleafService.processTemplate(request, id);
        return output;


    }
}

百里香服务非常简单。

@Component
public class ThymeleafService {

    @Value("${reportType}")
    private String reportType;

    private TemplateEngine templateEngine;

    public String processTemplate(MapRequest request, String templateId){
        templateEngine = new TemplateEngine();
        StringTemplateResolver resolver = new StringTemplateResolver();
        resolver.setTemplateMode(TemplateMode.TEXT);
        templateEngine.addTemplateResolver(resolver);
        // Map<String, Object> attributes = new HashMap<>();
        final Context ctxt = new Context(Locale.US);
        ctxt.setVariable("reportType", "\"" + reportType  + "\"");
   //     for (String name : ctxt.getVariableNames()){
////            attributes.put(name, ctxt.getVariable(name));
//        }
        TemplateSpec templateSpec = new TemplateSpec(templateId + ".json", null, TemplateMode.TEXT, attributes);

        StringWriter writer = new StringWriter();
        templateEngine.process(templateSpec, ctxt, writer);

        return writer.toString();
    }
}

POM.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.8.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.poc</groupId>
    <artifactId>map</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>mappoc</name>
    <description>POC</description>

    <properties>
        <java.version>11</java.version>
        <spring-cloud.version>Greenwich.SR3</spring-cloud.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-config</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.dataformat</groupId>
            <artifactId>jackson-dataformat-xml</artifactId>
        </dependency>
        <dependency>
            <groupId>ognl</groupId>
            <artifactId>ognl</artifactId>
            <version>3.1.12</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

下面是模板:

    ReportType: [(${reportType})]

我最终从地图上得到的是:

ReportType: "configReportType"

但我最终从map2得到的是:

ReportType: 

我尝试过在< code>Context中设置属性,在< code > template engine . process 函数中使用和不使用< code>AttributeMap都可以。我尝试使用< code>TemplateSpec并尝试仅使用字符串作为模板名称。

我已经调试了代码,并确认reportType变量正在被设置并传递到< code>process函数中。但是由于我无法理解的原因,它实际上并没有将数据注入到响应中。我觉得我错过了一些非常明显的东西,但我想不出来。任何帮助都将不胜感激。

注意:我不能只使用模型范例的原因是,虽然现在,它将数据返回给调用方,但最终目标是使用该数据。

共有2个答案

晋越彬
2023-03-14

我认为你的变量的语法是不连贯的

它应该是 [[${reportType}]] 而不是 [(${reportType})]

这就是我如何将其与百里香叶3.0一起使用

谭仰岳
2023-03-14

我最终设法让它工作起来——诀窍是我必须:

  • 使用ClassLoaderTemplateResolver而不是StringTemplateRessolver
  • 将控制器中的响应从字符串更改为响应属性
  • 从控制器签名中删除模型
 类似资料:
  • 问题内容: 我是Python和一般编程的新手(最多几个星期)。 关于Python和使用模块,我意识到可以使用导入函数。 所以不用打字 我可以说 我发现这大大简化了工作。现在,说我想在模块之间使用一堆 变量 ,并将它们全部定义在一个python模块中。如何使用上述类似方法或同样简单的方法导入这些变量。我不想使用,然后要求在所有变量前面加上。 理想的情况是以下情况: py b.py 输出: 问题答案:

  • 问题内容: 我目前正在python shell中进行计算。我想要的是Matlab样式列表,您可以在其中看到所有已定义的变量(因此我知道我使用了哪些名称,它们的值等等)。 有没有办法,我该怎么办? 问题答案: 您可以使用一些方法: 将为您提供范围内变量的列表: 将为您提供全局变量字典 会给你字典局部变量 如果可能,您可能要使用IPython。 为了获取所有当前用户定义变量的列表,IPython提供了

  • 问题内容: 是否可以使用相同的值替换格式化字符串中的所有变量? 就像是: 会回来的 问题答案: 有可能,但是必须修改格式字符串,必须使用 显式参数索引 : 显式参数索引: 在Printf,Sprintf和Fprintf中,默认行为是为每个格式化动词格式化在调用中传递的连续参数。但是,动词前的符号[n]表示第n个单索引参数将被格式化。宽度或精度的’*’之前的相同符号选择保存该值的参数索引。在处理了带

  • 问题内容: 有没有办法获取所有当前在javascript范围内的变量? 问题答案: 否。“范围内”变量由“作用域链”确定,该变量无法通过编程方式访问。 有关详细信息(很多),请查看ECMAScript(JavaScript)规范。这是指向官方页面的链接,您可以在其中下载规范规范(PDF),而这是指向官方的可链接HTML版本的链接。 根据您对Camsoft的评论进行更新 事件函数作用 域中 的变量取

  • gcc是否有一个选项来禁用未显式定义为volatile的全局变量的读/写优化? 我的团队正在耗尽我们的嵌入式C项目的程序内存,该项目使用gcc构建。当我启用优化以减少代码大小时,代码不再像预期的那样工作,因为我们没有在我们应该使用的地方使用volatile关键字。也就是说,我能够通过声明在ISRs Volatile中访问的几个变量来解决呈现的问题。然而,我并不确定这些是我需要声明volatile的

  • 问题内容: 我有一个类,我想找到它的所有 公共字段 (不是方法)。我怎样才能做到这一点? 谢谢! 问题答案: 返回该类的所有公共变量的数组。 返回整个类继承中的字段。如果要仅在相关类中定义字段,而不在其超类中定义字段,请使用,并通过以下方法过滤它们: 的字面实际上代表类型的对象。检查其文档以获取更多有趣的反射方法。 上面的类是。您可以查看整个程序包。