只需使用纯 HTML<form>
而不是 JSF <h:form>
。
<form action="http://example.com/mail" method="post">
<input type="text" name="username" value="#{bean.username}" />
<input type="password" name="password" value="#{bean.password}" />
<input type="submit" value="Go to Email" />
</form>
Run Code Online (Sandbox Code Playgroud)