JSF - error de Flow Scoped

 
Vista:
Imágen de perfil de María de Alejandría
Val: 2
Ha mantenido su posición en JSF (en relación al último mes)
Gráfica de JSF

error de Flow Scoped

Publicado por María de Alejandría (2 intervenciones) el 21/04/2018 19:57:30
Saludos
¿Qué causa exactamente este error?

WELD-001303: No active contexts for scope type javax.faces.flow.FlowScoped

Estoy con un proyecto y me sale, no veo forma de quitarlo . Aquí código relacionado con ello:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
public class inscripcion implements Serializable{
int ofertaId;
 
    @PersistenceContext
    EntityManager em;
 
    public int getOfertaId() {
        return ofertaId;
    }
 
    public void setOfertaId(int ofertaId) {
        this.ofertaId = ofertaId;
    }
 
    public String getOfertaName() {
try {
return em.createNamedQuery("Ofertas.findById", Ofertas.class).setParameter("id",ofertaId).getSingleResult().getName();
 
} catch (NoResultException e){
return "";
}
}
 
}
 
 
 
<?xml version="1.0" encoding="UTF-8"?>
<faces-config version="2.2" xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd">
<flow-definition id="inscripcion">
<flow-return id="goHome">
<from-outcome>/index</from-outcome>
</flow-return>
</flow-definition>
</faces-config>
 
 
 
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
      xmlns:h="http://xmlns.jcp.org/jsf/html"
      xmlns:f="http://xmlns.jcp.org/jsf/core"
 
  xmlns:p="http://primefaces.org/ui">
 
      <body>
 
        <ui:composition template="./../WEB-INF/Template2.xhtml">
 
           <ui:define name="content">
<h2>Seleccione una oferta</h2>
<h:form>
<h:selectOneRadio value="#{inscripcion.ofertaId}"
layout="pageDirection"
required="true">
<f:selectItems value="##{OfertasFacadeREST.findAll()}"
var="m"
itemValue="#{m.id}"
itemLabel="#{m.nombre}"></f:selectItems>
</h:selectOneRadio>
<p:commandButton id="shows" value="Aceptar" action="confirmar"/>
 
</h:form>
</ui:define>
 
        </ui:composition>
 
    </body>
</html>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder