1

Web アプリの war ファイルに含まれるライブラリ jar にパッケージ化されたカスタム タグがあります。

次のエラーが表示されます。

An error occurred at line: 66 in the jsp file: /WEB-INF/jsp/portlet/portfolio/operations/operationsInfo.jsp
org.apache.jsp.tag.meta.form.WidgetFactory_tag cannot be resolved to a type
63:       <c:forEach var="fldCfg" items="${config.page.fields}" >
64:          <tr>
65:             <td><form:Label fld="${fldCfg}"/></td>
66:             <td><form:WidgetFactory fld="${fldCfg}" decodesMap="${decodesMap}" command="${operationsInfoBean}" dateFormat="${preferredDateFormat}"/></td>
67:          </tr>
68:       </c:forEach>
69:   </table>

しかし、同じタグライブラリにあるラベルについては文句を言わないようです。jar が戦争中で、タグ ファイルが jar にあり、TLD (META-INF 内) が明示的に「WidgetFactory」を定義していることを確認しました。

このエラーが発生するのはなぜですか?

TLD スニピット:

<taglib>
<tlib-version>1.0</tlib-version>
<jsp-version>1.2</jsp-version>
<short-name>Form</short-name>
<uri>http://web.foo.com/tags/form</uri>
<description>Tags that encapsulate the Aladdin form elements, both basic and widgets</description>

<tag-file>
    <description>Factory to select the correct widget type</description>
    <name>WidgetFactory</name>
    <path>/META-INF/tags/form/WidgetFactory.tag</path>
</tag-file>

...

4

2 に答える 2

1

タグで使用されている別のタグ ライブラリのインポートを省略していたため、コンパイルされませんでした。

于 2010-04-16T20:03:12.423 に答える
0

.tld ファイルにあるクラス名が正しいことを確認してください。パッケージ名のどこかにタイプミスがあるか、クラスのpackageヘッダーが間違っている可能性があります。

于 2010-04-01T15:42:41.483 に答える