나는이 샘플 코드가 있습니다# {flash.keep.message}의 표현식 언어에서 메서드 체이닝은 어떻게 작동합니까?
@ManagedBean
@ApplicationScoped
public class FooBar {
public String foo() {
final Flash flash = FacesContext.getCurrentInstance().getExternalContext().getFlash();
flash.put("message", "Hello World");
return "hello?faces-redirect=true";
}
}
마지막 hello.xhtml
그래서
<h:body>
#{flash.keep.message}
</h:body>
내가 제출 index.xhtml
로 이동 공격, 내가 리디렉션에서 :
<h:form>
<h:commandButton action="#{fooBar.foo()}" value="Submit"/>
</h:form>
을하고 빈에서 예상대로 hello.xhtml
. 그리고 페이지를 새로 고침 할 때 여전히 flash.keep 동작으로 인해 메시지가 표시됩니다.
지금 나는 무슨 일이 일어나고 있는지 이해하려고 노력하고 있으므로 documentation을 엽니 다.
이 클래스에는 keep()
메서드가 있지만 반환 유형은 void
이고 String
매개 변수가 필요합니다. 따라서 #{flash.keep.message}
메시지 매개 변수로 keep()
메서드를 호출합니까? 나는 정말 그렇게 생각하지 않는다. 내가 아는 한 그것이 #{flash.keep(message)}
이어야했을 것이다. 그렇지 않습니까?
그래서 여기서 무엇이 진행되고 있습니까?