2016-06-25 9 views
1

나는이 샘플 코드가 있습니다# {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)}이어야했을 것이다. 그렇지 않습니까?

그래서 여기서 무엇이 진행되고 있습니까?

답변

1

EL 해결은 ELResolver 구현으로 사용자 정의 할 수 있습니다. #{flash.keep.message} 평가에는 두 개의 EL 해결 프로그램이 있습니다. 첫 번째 JSF 내장 FlashELResolver#{flash}에서 실행됩니다. 당신은 소스 코드 (줄 번호가 일치 인 Mojarra 2.2.12)에서 볼 수 있듯이 #{flash.keep} 표현식이 평가 될 때

216  // and the property argument is "keep"... 
217  if (property.toString().equals(FLASH_KEEP_VARIABLE_NAME)) 
218  { 
219   elContext.setPropertyResolved(true); 
220   
221   // then this is a request to promote the value 
222   // "property", which is assumed to have been previously 
223   // stored in request scope via the "flash.now" 
224   // expression, to flash scope. 
225   result = base; 
226   // Set a flag so the flash itself can look in the request 
227   // and promote the value to the next request 
228   FlashFactory ff = (FlashFactory) 
229     FactoryFinder.getFactory(FactoryFinder.FLASH_FACTORY); 
230   ff.getFlash(true); 
231   ELFlash.setKeepFlag(facesContext); 
232  } 

FlashELResolverELFlash.setKeepFlag(facesContext) (라인 231)를 호출합니다. 또한 EL 컨텍스트가 다음 속성으로 넘어갈 수 있도록 속성을 해결 된 것으로 설정하고 (행 219) base (#{flash})을 평가 결과 (225 행)로 설정하므로 실제로 #{flash.keep}은 매우 동일한 #{flash} 개체를 반환합니다. message 재산권 여전히 본질적 #{flash}이다 #{flash.keep} 결과, 평가되어야하지만, '유지'플래그가 설정 될 때

그리고 그 후, 상기 EL-내장 MapELResolver 실행된다. 이는 #{flash}이 본질적으로 Map이기 때문에 (강조 광산)을 참조하십시오.

공공 추상 클래스는 플래시
이것은 customized에서 Flash 클래스와 아래 (행 번호가 일치 인 Mojarra 인 Map#get() 방법, 호출>

객체,
지도 < 문자열을 구현하는 객체 확장 2.2.12) :

384  public Object get(Object key) { 
385   Object result = null; 
386 
387   FacesContext context = FacesContext.getCurrentInstance(); 
388   if (null != key) { 
389    if (key.equals("keepMessages")) { 
390     result = this.isKeepMessages(); 
391    } else if (key.equals("redirect")) { 
392     result = this.isRedirect(); 
393    } else { 
394     if (isKeepFlagSet(context)) { 
395      result = getPhaseMapForReading().get(key); 
396      keep(key.toString()); 
397      clearKeepFlag(context); 
398      return result; 
399     } 
400 
401    } 
402 
403   } 

라인 396에서 볼 수 있듯이 처럼 플래그가 설정되면 keep(key)이 호출됩니다.