如何将 js 文件添加到我自己的复合组件 taglib 中?
我有以下结构:
src/main/resources/META-INF/
- mytaglib.xml
- faces-config.xml
src/main/resources/META-INF/resources
- myComponent.xhtml
在 myComponent.xhtml 我想添加一个 js 文件。我该怎么做?我必须把这个 js 文件放在哪里?
已解决 - 请参阅我的评论
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:cc="http://java.sun.com/jsf/composite"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core">
<head>
<title>An button with JS</title>
</head>
<body>
<cc:interface>
<h:outputScript library="js" name="test.js" />
</cc:interface>
<cc:implementation>
<p:commandLink value="test" onclick="myFunc();" />
</cc:implementation>
</body>
</html>