Olá,
existe algum componente em JSF, myfaces, tomahawk ou algum divino, que tenha implementado um action, sem ser botão ?
meu cenário:
um html chamará uma jsf, onde ela precisará chamar automáticamente uma action!!!, sem botoes nem nada…
minha jsf:
<?xml version="1.0" encoding="UTF-8"?>
<jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:jsp="http://java.sun.com/JSP/Page">
<jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8" />
<f:view>
<html lang="pt-BR" xml:lang="pt-BR">
<head>
<meta content="no-cache" http-equiv="Cache-Control" />
<meta content="no-cache" http-equiv="Pragma" />
<title>Redirecionando</title>
<META HTTP-EQUIV="REFRESH" CONTENT="01; URL=http://localhost:8080/projeto/login.jsf"></META>
</head>
</html>
</f:view>
</jsp:root>
alguem tem idéia ?
valew