2
我想以自動生成的方式打印支持bean的內容。所有的內容都出現在JSP上。無論如何,這可能嗎?使用JSF應用程序中的反射讀取託管bean的內容
由於提前, 丹尼爾這將是使用JavaBean API和custom tag function做
我想以自動生成的方式打印支持bean的內容。所有的內容都出現在JSP上。無論如何,這可能嗎?使用JSF應用程序中的反射讀取託管bean的內容
由於提前, 丹尼爾這將是使用JavaBean API和custom tag function做
的一種方式。
WEB-INF/TLD/beans.tld:
<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd"
version="2.1">
<description>Bean inspector.</description>
<display-name>Bean inspector utils</display-name>
<tlib-version>1.2</tlib-version>
<short-name>beans</short-name>
<uri>http://acme.demo</uri>
<function>
<name>inspect</name>
<function-class>props.Inspector</function-class>
<function-signature>
java.util.List inspect(java.lang.Object)
</function-signature>
</function>
</taglib>
實現:
public class Inspector {
public static List<Map.Entry<String, Object>> inspect(
Object bean) {
Map<String, Object> props = new LinkedHashMap<String, Object>();
try {
BeanInfo info = Introspector.getBeanInfo(bean
.getClass(), Object.class);
for (PropertyDescriptor propertyDesc : info
.getPropertyDescriptors()) {
String name = propertyDesc.getDisplayName();
Method reader = propertyDesc.getReadMethod();
Object value = reader.invoke(bean);
props.put(name, value == null ? "" : value);
}
} catch (IntrospectionException e) {
throw new RuntimeException(e);
} catch (InvocationTargetException e) {
throw new RuntimeException(e);
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}
return new ArrayList<Map.Entry<String, Object>>(props
.entrySet());
}
}
此標記庫然後在JSP頭的輸入:
<?xml version="1.0" encoding="UTF-8" ?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core" xmlns:beans="http://acme.demo">
樣品的dataTable使用功能:
<h:dataTable border="1" value="#{beans:inspect(demoPropsBean)}" var="entry">
<h:column id="column1">
<f:facet name="header">
<h:outputText value="property" />
</f:facet>
<h:outputText value="#{entry.key}" />
</h:column>
<h:column id="column2">
<f:facet name="header">
<h:outputText value="value" />
</f:facet>
<h:outputText value="#{entry.value}" />
</h:column>
</h:dataTable>
有關如何提供本地化屬性名稱等的信息,請參閱JavaBean spec。
感謝您的回答! 我試過了,並且出現錯誤: javax.servlet.ServletException:調用函數'beans:inspect'時出現java.lang.NullPointerException的根本原因時出現問題。 也許我傳遞了一個錯誤的參數。 這是錯誤的嗎? –
2009-05-06 16:44:25