gpt4 book ai didi

jsf - 将 Action 监听器方法作为标记文件属性传递

转载 作者:行者123 更新时间:2023-12-04 04:33:02 24 4
gpt4 key购买 nike

我正在创建一个包含 primefaces 3.5 对话框的标记文件。该对话框包含一个命令按钮,该按钮使用 Action 监听器进行参数化。问题是我是否可以将 actionlistener 方法作为属性传递给标记文件。

为了澄清问题,我准备了一个具有以下依赖项的测试用例(使用 maven)

<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>3.5</version>
</dependency>

<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.2.4</version>
</dependency>

<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.2.4</version>
</dependency>

我定义了一个标签库:
<?xml version="1.0" encoding="UTF-8"?>
<facelet-taglib version="2.0" 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 http://java.sun.com/xml/ns/javaee/web-facelettaglibrary_2_0.xsd">
<namespace>http://demo.de/jsf/facelets</namespace>
<tag>
<tag-name>DemoDialog</tag-name>
<source>DemoDialog.xhtml</source>
</tag>
</facelet-taglib>

DemoDialog.xhtml 是这样的:
<ui:composition 
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:c="http://java.sun.com/jsp/jstl/core">

<c:if test="${empty dlgId}">
<c:set var="dlgId" value="${id}" />
</c:if>

<c:if test="${empty widgetVar}">
<c:set var="widgetVar" value="testDlg" />
</c:if>

ABC: #{okButtonActionListener}

<p:dialog id="#{dlgId}" header="#{header}" widgetVar="#{widgetVar}">
<h:form id="testForm" style="width: 400px;">
<p:panelGrid>
<p:row>
<p:column>
<p:commandButton oncomplete="#{widgetVar}.hide()" value="Cancel" />
</p:column>
<p:column>
<p:commandButton
actionListener="${okButtonActionListener}"
oncomplete="#{widgetVar}.hide()"
value="Ok" />
</p:column>
</p:row>
</p:panelGrid>
</h:form>
</p:dialog>
</ui:composition>

最后 DemoDialog 标记在示例 xhtml 页面中使用
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:li="http://demo.de/jsf/facelets">
<f:view contentType="text/html">
<h:head>
<f:facet name="first">
<meta http-equiv="X-UA-Compatible" content="EmulateIE8" />
<meta content='text/html; charset=UTF-8' http-equiv="Content-Type"/>
<title>Dialog Template test</title>
</f:facet>
</h:head>
<h:body>
<h:form id="demoForm">
<p:commandButton onclick="testDlg.show()"/>
</h:form>
<li:DemoDialog id="lidemo" onclick="alert('hello')" okButtonActionListener="\${dialogBean.action_listener()}">
</li:DemoDialog>
</h:body>
</f:view>
</html>

为了测试页面,我通过 maven (mvn jetty:run-war) 启动了 jetty。

最佳答案

您需要在 .taglib.xml 中将标签属性声明为方法表达式属性。通过显式声明 <method-signature> .它确实默认为值表达式。

<tag>
<tag-name>DemoDialog</tag-name>
<source>DemoDialog.xhtml</source>
<attribute>
<name>okButtonActionListener</name>
<method-signature>void actionListener(javax.faces.event.ActionEvent)</method-signature>
</attribute>
</tag>

(方法名称 actionListener 完全由您选择;重要的是返回类型和参数类型,它们必须是完全限定名称)

额外奖励,在 .taglib.xml 中明确声明标签属性在那些上启用 IDE 自动完成。

关于jsf - 将 Action 监听器方法作为标记文件属性传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20242506/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com