问题标签 [jsf]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
428 浏览

jsf - Sun One Web 服务器 6.1 和 Tomahawk

有谁知道哪个版本的 tomahawk 适合与 Sun One Webserver 6.1 一起使用?

在此先感谢,阿莱霍

0 投票
2 回答
1284 浏览

java - Facelets custom component doesn't set attribute after submit

I am having a problem with custom components in facelets. The first time that the page is rendered, the attributes are set properly on the component class. When a form is submitted however, the attributes are not set.

Here is the class that I am using to test this.

The component is used in the .xhtml page like this.

When the page renders for the first time, the component renders the following html code.

When the button is clicked, it renders this.

From the log, you can see that the component is constructed again, but the attribute is not set.

From what I understand, facelets does all the wiring of attributes to components so I don't need a tag class, but I don't understand why the attribute would be set correctly the first time, but not the second time.

0 投票
2 回答
1504 浏览

java - JSF 多部分验证方案

在 JSF 中,是否可以使用 JSF 的验证框架(又名验证器、即时、必需等)来解决以下验证/更新场景?

如果所有字段都是下拉菜单,并且按下 [Update C] 按钮只会使 A、B 和 C 生效,而不会验证其余字段,则按下 [Update D] 按钮只会使字段 B、C 和 D 生效并按下[全部提交] 按钮将导致所有字段验证。

0 投票
1 回答
372 浏览

java - selectOne 和 selectMany 选项是否受 SelectItems 限制?

JSF selectOne 和 selectMany 控件是否只允许提交给定 selectItems 中定义的值?我担心参数欺骗,如果这是内置的,我不需要验证器来确保所选值是有效选择之一。

0 投票
1 回答
6868 浏览

java - jsf中的响应编写器

我想知道关于startElement,endElementwriteAttribute的方法ResponseWriter

0 投票
8 回答
1672 浏览

java - 您如何开发 JSF 应用程序?

我第一次在一个需要构建一个大量使用 JSF(尤其是 ICEfaces)的 web 应用程序的项目上工作。有很多东西需要编码,包括 CSS、HTML、JSP/Java,当然还有 JSF。

我在 Eclipse btw 中完成所有这些工作,并使用 eclipse 负责启动的本地 tomcat 服务器来运行应用程序。

无论如何,我注意到这一切都非常缓慢。当我更改一个 JSF 时,我必须重新启动网络服务器,以便查看新结果。通常我只是对布局和停止、重新启动、刷新所需的 10 到 15 秒以上的时间感兴趣,这让我发疯。我每天重启 Tomcat 一百次——啊!我需要更快的周转!

难道我做错了什么?这是所有 Web 开发人员的自然状态吗​​?

0 投票
3 回答
2602 浏览

jsf - 使用请求参数打开详细视图

我使用 myfaces 和 richfaces 创建了一个简单的主/细节。通过单击 rich:dataTable 中的 ah:commandLink,用户可以打开详细视图并编辑实体。

现在我想创建一个允许用户直接打开详细视图的 URL。通常我会通过创建像 /detail.jsp?id=12 这样的 URL 来实现这一点 - 我如何使用 JSF 实现这一点?

0 投票
6 回答
38110 浏览

jsp - JSF 1.x 通用异常处理

如果我的业务层中有异常(例如,我的 JDBC 连接 bean 中的 SQL 异常),我如何将它与自定义消息一起传播到全局error.jsp页面?

0 投票
2 回答
5067 浏览

jsf - 使用面在数据表上的多行数据记录

在 JSF 中是否可以让数据表显示如下记录?

谢谢

0 投票
4 回答
8830 浏览

exception - 使用自定义 JSF 事件处理程序拦截异常

有什么方法可以ActionListener在 JSF 中创建一个自定义类,以便我可以在使用我自己的 ActionListener 类按下命令按钮时拦截异常

我尝试使用以下代码:

firstpage.jsp Dao.java NewActionListener.java faces-config.xml error.jsp

该代码生成了一个 SQL 异常,但它没有向我显示error.jsp页面。

我有什么错误配置导致异常触发时错误页面不显示?