我有具有属性的YAMl配置文件:
send-executor:
thread-max-count: 5
我还有另一个财产:
ready-query: SELECT * From ...(another conditions).. where ROWNUM >= 5
我可以在ROWNUM >= 5
的另一个属性thread-max-count
中设置 5 吗?
像这样的东西
ready-query: SELECT * From ...(another conditions).. where ROWNUM >= {$thread-max-count}
还是我需要设置占位符并仅在Java代码中对其进行更改?
答案 0 :(得分:2)
是的,可以。语法为${send-executor.thread-max-count}