深入研究Spring Batch,我想知道如何在作业的不同步骤之间共享数据?
我们可以使用JobRepository吗?如果是的话,我们怎么做?
有没有其他方法可以做到/达到同样的目的?
我们怎样才能使句子中的某些单词出现在BOLD中
例如 - 我试图将一个句子中的一个单词用BOLD表示
句子是"请选择金额"
金额应该是BOLD,现在,当我使用时
message = "please select the <b>amount </b>"
Run Code Online (Sandbox Code Playgroud)
这不起作用.它只是表明
please select the <b>amount </b>.
Run Code Online (Sandbox Code Playgroud)
我怎样才能让它发挥作用?