【发布时间】:2015-07-27 01:04:59
【问题描述】:
我正在开发一个 jsf Web 应用程序,我想通过普通的 href url 从托管 bean 调用一个方法。我的问题是我正在发送一封电子邮件,其中包含应用程序链接,例如
http://192.168.1.10/app/password.xhtml
我已经附加了一些参数,例如
http://192.168.1.10/app/password.xhtml?no=DBzMMeIE7SY=
I need to get the request parameter "no" as "DBzMMeIE7SY=" and the method of managed bean class PasswordBean.java with change() method should be called where i can get the parameters through request. I have given the initialize method also init method it is not called.
当url在浏览器中加载时我需要通过托管bean方法的参数值,任何人都可以帮助我继续它。
【问题讨论】: