在 Spring 的 MockMvc 构建期间设置 asciidoctor 中的属性值
Setting values of attributes in asciidoctor during Spring's MockMvc building
我正在使用 Spring MVC 和 Spring 测试套件(Spring REST 文档),我想知道有没有办法在 asciidoctor adoc 中设置属性值使用 MockMvcBuilders 构建 MockMvc 期间的文件?
例如我在 index.adoc
:我的属性:
并想在 MockMvc 构建期间动态设置它?
:我的属性:我的值
我在 asciidoctor 文档中看到:
By default, the attribute assignment precedence, from highest to
lowest, is as follows:
Attribute passed to the API or CLI
Attribute defined in the document
Default value
我想知道如何将它传递给 API :-)
我认为有两种方法可以做到这一点。在这两种情况下,当您 运行 测试时,您都会将属性 key-value 对写入文件。然后,您需要将它们放入 Asciidoctor。
将它们放入 Asciidoctor 的一种方法是更新构建配置以读入文件,然后设置属性。我怀疑这只有在您使用 Gradle 时才有可能。您可以编写一些 Groovy 来读取 key-value 对并将它们添加到 asciidoctor
任务的 attributes
映射中。
另一种方法是编写一个 AsciidoctorJ 扩展,它读取包含 key-value 对的文件并设置属性。这种方法适用于 Maven 或 Gradle。文档中有一个 example 显示如何使用 Preprocessor
设置属性。
我正在使用 Spring MVC 和 Spring 测试套件(Spring REST 文档),我想知道有没有办法在 asciidoctor adoc 中设置属性值使用 MockMvcBuilders 构建 MockMvc 期间的文件?
例如我在 index.adoc
:我的属性:
并想在 MockMvc 构建期间动态设置它?
:我的属性:我的值
我在 asciidoctor 文档中看到:
By default, the attribute assignment precedence, from highest to lowest, is as follows:
Attribute passed to the API or CLI Attribute defined in the document Default value
我想知道如何将它传递给 API :-)
我认为有两种方法可以做到这一点。在这两种情况下,当您 运行 测试时,您都会将属性 key-value 对写入文件。然后,您需要将它们放入 Asciidoctor。
将它们放入 Asciidoctor 的一种方法是更新构建配置以读入文件,然后设置属性。我怀疑这只有在您使用 Gradle 时才有可能。您可以编写一些 Groovy 来读取 key-value 对并将它们添加到 asciidoctor
任务的 attributes
映射中。
另一种方法是编写一个 AsciidoctorJ 扩展,它读取包含 key-value 对的文件并设置属性。这种方法适用于 Maven 或 Gradle。文档中有一个 example 显示如何使用 Preprocessor
设置属性。