我使用Spring MVC。
我的控制器中有一个私有字段。此字段的值来自属性文件,
<h:form>
<h:outputText id="txt_count" value="#{counterView.number}" />
<p:poll interval="3" listener="#{counterView.increment}" update="txt_count" />
</h:form>
我必须覆盖selenium测试的值。如何覆盖此字段的值,表示我想设置自定义值(以便不从属性文件中获取值)?
可以这样吗,
@Controller
public Class MainController() {
@Value("${my-value}")
private int myValue;
}