JSF 2.1.10 を使用して、Tomcat 7.0.28 で既存のアプリケーションを実行しようとしています。
私は次の豆を持っています:
@Named
@Dependent
public class FormatterBean
{
public String replaceNewLineWithBrTag(String s)
{
return Formatter.replaceNewLineWithBrTag(s);
}
public String leftJustifyWithZeros(String string, Integer zeroTotal)
{
return Formatter.leftJustifyWithZeros(string, zeroTotal);
}
}
私がこのようなことをするとき
<p:tooltip for="visualizar" value="#{formatterBean.replaceNewLineWithBrTag(adiantamento.observacao)}" />
次のエラーが表示されます。
/page/rdv/adiantamento.xhtml @87,117 value="#{formatterBean.replaceNewLineWithBrTag(adiantamento.observacao)}": プロパティ 'replaceNewLineWithBrTag' がタイプ br.com.spdata.util.FormatterBean で見つかりません
いくつかの詳細:
- Glassfish 3.1.2 でも同じコードが正常に動作します
- メソッド leftJustifyWithZeros は正常に機能します
アイデアはありますか?
ありがとう、フィリップ