在 eclipse 中显示 JSF EL 调用层次结构
show JSF EL call hierarchy in eclipse
有什么方法可以获取 JSF bean 方法的调用层次结构,包括 eclipse 中的表达式语言调用?
我得到了一个简单的豆子:
@ManagedBean
@ViewScoped
public class MyBean {
public String getHello() {
return "Hello";
}
}
还有一个简单的 JSF 页面:
<h:outputText value="#{myBean.demo}" />
按住 CTRL 单击 #{myBean.demo} eclipse 显示 getter。
但是 getHello() 的调用层次结构没有显示 EL 调用。
有没有办法查看是否在任何 JSF 页面中使用了 getter?
JBoss Tools (for Java EE+Web) supports it. You can get it in Eclipse Luna (4.4.x) by Help > Install New Software and then entering the URL of this update site。在可用插件组件列表中,滚动到底部并选择选项 "JBoss Web and Java EE Development"(其余部分与 Java EE web dev 无关)。
有什么方法可以获取 JSF bean 方法的调用层次结构,包括 eclipse 中的表达式语言调用?
我得到了一个简单的豆子:
@ManagedBean
@ViewScoped
public class MyBean {
public String getHello() {
return "Hello";
}
}
还有一个简单的 JSF 页面:
<h:outputText value="#{myBean.demo}" />
按住 CTRL 单击 #{myBean.demo} eclipse 显示 getter。
但是 getHello() 的调用层次结构没有显示 EL 调用。
有没有办法查看是否在任何 JSF 页面中使用了 getter?
JBoss Tools (for Java EE+Web) supports it. You can get it in Eclipse Luna (4.4.x) by Help > Install New Software and then entering the URL of this update site。在可用插件组件列表中,滚动到底部并选择选项 "JBoss Web and Java EE Development"(其余部分与 Java EE web dev 无关)。