Bonjour je susis bloqué depuis plusieurs jours sur une erreur à l'exécution d' 1 application que je développe avec netbeans 6.5.1, j'utilise glassfish et
java.lang.NoSuchMethodError: be.isl.TFE.entity.PList._toplink_settype(Lbe/isl/TFE/entity/TypeV
les deux classes d'où pourrait venir le problème sont les suivantes
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
@Entity
@Table(name = "t_list")
public class PList implements Serializable, Comparable {
 
    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE)
    private Long list_id;
 
    //relation 1:n bidirectionnnelle entre le type et la liste
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "list_type_id")
    private Type type = new Type();
    @Temporal(TemporalType.DATE)
    @Column(name = "list_creation_date ")
    private Date creation_date;
    @Temporal(TemporalType.DATE)
    @Column(name = "list_event_date ")
    private Date event_date;
    @Column(name = "list_av_amount ")
    private Double av_amount = 0.0;
 
    //relation 0:1 unidirectionnelle entre la liste et le nom de l'addresse(hopital, domicile, salle de fête)
    @OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
    @JoinColumn(name = "ship_id", nullable = true)
    private Shipping shipping = new Shipping();
    @Column(name = "list_status ")
    private String status;// en cours ou cloturée
 
    //relation 1:n bidirectionnelle entre la liste et l'annonce
    @OneToMany(fetch = FetchType.LAZY)
    private List<Announcement> announcements;
 
    //relation n:n bidirectionnelle entre le cleint et la liste
    @ManyToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
    private Customer customer;
 
    //relation n:n unidirectionnelle entre la liste et l'article
    @ManyToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
    @JoinTable(name = "t_list_item",
    joinColumns = {@JoinColumn(name = "list_id")},
    inverseJoinColumns = {@JoinColumn(name = "item_id")})
    private List<Item> items;
 
    //=======================================================
    //              constructeurs                           =
    //=======================================================
    /**
     *
     */
    public PList() {
    }
 
    /**
     * 
     * @param type
     * @param creation_date
     * @param av_amount
     */
    public PList(Date creation_date, Double av_amount) {
        this.creation_date = creation_date;
        this.av_amount = av_amount;
    }
//...
}
la classe type
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
@Entity
@Table(name = "t_list_type")
public class Type implements Serializable, Comparable {
 
    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE)
    //@Column(name = "list_type_id")
    private Long type_id;
    @Column(name = "list_type_name")
    private String type_name;
    //relation 1:n bidirectionnnelle entre le type et la liste
    @OneToMany(mappedBy = "type", fetch = FetchType.LAZY)
    //@OrderBy("event_date ASC")
    private List<PList> lists;
 
    //=======================================================
    //              constructeurs                           =
    //=======================================================
    public Type() {
    }
 
    public Type(String name) {
        this.type_name = name;
    }
/...
}
voici le log du server
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
classLoader = WebappClassLoader
  delegate: true
  repositories:
    /WEB-INF/classes/
----------> Parent Classloader:
EJBClassLoader : 
urlSet = [URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/commons-beanutils.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/commons-collections.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/commons-digester.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/commons-logging.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/log4j.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/log4j-core.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/jsf-api.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/jstl.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/TFE-ejb_jar/, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/TFE-ejb.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/TFE-war_war/WEB-INF/classes/, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/TFE-war_war/WEB-INF/lib/jsf-impl.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/TFE-war_war/WEB-INF/lib/standard.jar, URLEntry : file:/C:/Sun/AppServer/domains/domain1/generated/ejb/j2ee-apps/TFE/]
doneCalled = false 
 Parent -> EJBClassLoader : 
urlSet = []
doneCalled = false 
 Parent -> java.net.URLClassLoader@9ac0f5
SharedSecrets.getJavaNetAccess()=java.net.URLClassLoader$7@3a5631
CORE5022 : Tous les ejb de [TFE] ont été déchargés avec succès !
deployed with moduleid = TFE
The alias name for the entity class [class be.isl.TFE.entity.Category] is being defaulted to: Category.
The column name for element [private java.lang.Long be.isl.TFE.entity.Category.cat_id] is being defaulted to: CAT_ID.
The alias name for the entity class [class be.isl.TFE.entity.Announcement] is being defaulted to: Announcement.
The column name for element [private java.lang.Long be.isl.TFE.entity.Announcement.announc_id] is being defaulted to: ANNOUNC_ID.
The column name for element [private java.util.Date be.isl.TFE.entity.Announcement.ann_date] is being defaulted to: ANN_DATE.
The alias name for the entity class [class be.isl.TFE.entity.ListItem] is being defaulted to: ListItem.
The column name for element [private java.lang.Long be.isl.TFE.entity.ListItem.list_item_id] is being defaulted to: LIST_ITEM_ID.
The alias name for the entity class [class be.isl.TFE.entity.Item] is being defaulted to: Item.
The column name for element [private java.lang.Long be.isl.TFE.entity.Item.item_id] is being defaulted to: ITEM_ID.
The alias name for the entity class [class be.isl.TFE.entity.PList] is being defaulted to: PList.
The column name for element [private java.lang.Long be.isl.TFE.entity.PList.list_id] is being defaulted to: LIST_ID.
The alias name for the entity class [class be.isl.TFE.entity.Customer] is being defaulted to: Customer.
The column name for element [private java.lang.Long be.isl.TFE.entity.Customer.cust_id] is being defaulted to: CUST_ID.
The alias name for the entity class [class be.isl.TFE.entity.Type] is being defaulted to: Type.
The column name for element [private java.lang.Long be.isl.TFE.entity.Type.type_id] is being defaulted to: TYPE_ID.
The alias name for the entity class [class be.isl.TFE.entity.Purchase] is being defaulted to: Purchase.
The column name for element [private java.lang.Long be.isl.TFE.entity.Purchase.purch_id] is being defaulted to: PURCH_ID.
The alias name for the entity class [class be.isl.TFE.entity.Country] is being defaulted to: Country.
The column name for element [private java.lang.Long be.isl.TFE.entity.Country.country_id] is being defaulted to: COUNTRY_ID.
The alias name for the entity class [class be.isl.TFE.entity.Shipping] is being defaulted to: Shipping.
The column name for element [private java.lang.Long be.isl.TFE.entity.Shipping.ship_id] is being defaulted to: SHIP_ID.
The alias name for the entity class [class be.isl.TFE.entity.Status] is being defaulted to: Status.
The column name for element [private java.lang.Long be.isl.TFE.entity.Status.status_id] is being defaulted to: STATUS_ID.
The alias name for the entity class [class be.isl.TFE.entity.Address] is being defaulted to: Address.
The column name for element [private java.lang.Long be.isl.TFE.entity.Address.add_id] is being defaulted to: ADD_ID.
The alias name for the entity class [class be.isl.TFE.entity.CustList] is being defaulted to: CustList.
The column name for element [private java.lang.Long be.isl.TFE.entity.CustList.cust_list_id] is being defaulted to: CUST_LIST_ID.
The target entity (reference) class for the one to many mapping element [private java.util.List be.isl.TFE.entity.Type.lists] is being defaulted to: class be.isl.TFE.entity.PList.
The target entity (reference) class for the many to one mapping element [private be.isl.TFE.entity.Type be.isl.TFE.entity.PList.type] is being defaulted to: class be.isl.TFE.entity.Type.
The primary key column name for the mapping element [private be.isl.TFE.entity.Type be.isl.TFE.entity.PList.type] is being defaulted to: TYPE_ID.
The target entity (reference) class for the one to one mapping element [private be.isl.TFE.entity.Shipping be.isl.TFE.entity.PList.shipping] is being defaulted to: class be.isl.TFE.entity.Shipping.
The primary key column name for the mapping element [private be.isl.TFE.entity.Shipping be.isl.TFE.entity.PList.shipping] is being defaulted to: SHIP_ID.
The target entity (reference) class for the many to many mapping element [private java.util.List be.isl.TFE.entity.PList.items] is being defaulted to: class be.isl.TFE.entity.Item.
The source primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.items] is being defaulted to: LIST_ID.
The target primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.items] is being defaulted to: ITEM_ID.
The target entity (reference) class for the one to many mapping element [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: class be.isl.TFE.entity.Announcement.
The join table name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: t_list_t_announcement.
The source primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: LIST_ID.
The source foreign key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: PList_LIST_ID.
The target primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: ANNOUNC_ID.
The target foreign key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: announcements_ANNOUNC_ID.
The target entity (reference) class for the many to one mapping element [private be.isl.TFE.entity.Customer be.isl.TFE.entity.PList.customer] is being defaulted to: class be.isl.TFE.entity.Customer.
The primary key column name for the mapping element [private be.isl.TFE.entity.Customer be.isl.TFE.entity.PList.customer] is being defaulted to: CUST_ID.
The foreign key column name for the mapping element [private be.isl.TFE.entity.Customer be.isl.TFE.entity.PList.customer] is being defaulted to: CUSTOMER_CUST_ID.
The target entity (reference) class for the many to one mapping element [private be.isl.TFE.entity.Category be.isl.TFE.entity.Item.category] is being defaulted to: class be.isl.TFE.entity.Category.
The primary key column name for the mapping element [private be.isl.TFE.entity.Category be.isl.TFE.entity.Item.category] is being defaulted to: CAT_ID.
The target entity (reference) class for the many to many mapping element [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: class be.isl.TFE.entity.PList.
The join table name for the many to many mapping [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: t_item_t_list.
The source primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: ITEM_ID.
The source foreign key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: Item_ITEM_ID.
The target primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: LIST_ID.
The target foreign key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: plists_LIST_ID.
The target entity (reference) class for the one to many mapping element [private java.util.List be.isl.TFE.entity.CustList.status_s] is being defaulted to: class be.isl.TFE.entity.Status.
The source primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.CustList.status_s] is being defaulted to: CUST_LIST_ID.
The target primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.CustList.status_s] is being defaulted to: STATUS_ID.
The target entity (reference) class for the one to one mapping element [private be.isl.TFE.entity.Address be.isl.TFE.entity.Customer.address] is being defaulted to: class be.isl.TFE.entity.Address.
The primary key column name for the mapping element [private be.isl.TFE.entity.Address be.isl.TFE.entity.Customer.address] is being defaulted to: ADD_ID.
The target entity (reference) class for the one to many mapping element [private java.util.List be.isl.TFE.entity.Customer.lists] is being defaulted to: class be.isl.TFE.entity.PList.
The target entity (reference) class for the one to one mapping element [private be.isl.TFE.entity.Address be.isl.TFE.entity.Shipping.address] is being defaulted to: class be.isl.TFE.entity.Address.
The primary key column name for the mapping element [private be.isl.TFE.entity.Address be.isl.TFE.entity.Shipping.address] is being defaulted to: ADD_ID.
The target entity (reference) class for the many to one mapping element [private be.isl.TFE.entity.PList be.isl.TFE.entity.Announcement.plist] is being defaulted to: class be.isl.TFE.entity.PList.
The primary key column name for the mapping element [private be.isl.TFE.entity.PList be.isl.TFE.entity.Announcement.plist] is being defaulted to: LIST_ID.
The target entity (reference) class for the one to one mapping element [private be.isl.TFE.entity.Country be.isl.TFE.entity.Address.country] is being defaulted to: class be.isl.TFE.entity.Country.
The primary key column name for the mapping element [private be.isl.TFE.entity.Country be.isl.TFE.entity.Address.country] is being defaulted to: COUNTRY_ID.
The target entity (reference) class for the one to many mapping element [private java.util.List be.isl.TFE.entity.Category.items] is being defaulted to: class be.isl.TFE.entity.Item.
be.isl.TFE.entity.PList actually got transformed
be.isl.TFE.entity.Announcement actually got transformed
naming.bind
naming.bind
naming.bind
LDR5010 : Tous les ejb de [TFE] chargés avec succès !
Initializing Sun's JavaServer Faces implementation (1.2_04-b22-p05) for context '/TFE-war'
StandardWrapperValve[Faces Servlet]: PWC1406 : servlet.service() pour le servlet Faces Servlet a émis une exception.
java.lang.NoSuchMethodError: be.isl.TFE.entity.PList._toplink_settype(Lbe/isl/TFE/entity/Type;)V
        at be.isl.TFE.entity.PList.<init>(PList.java:30)
        at be.isl.tfe.jsf.ListController.<init>(ListController.java:29)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at java.lang.Class.newInstance0(Class.java:355)
        at java.lang.Class.newInstance(Class.java:308)
        at com.sun.faces.config.ManagedBeanFactoryImpl.newInstance(ManagedBeanFactoryImpl.java:277)
        at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:527)
        at com.sun.faces.el.ManagedBeanELResolver.getValue(ManagedBeanELResolver.java:82)
        at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:175)
        at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:64)
        at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:86)
        at com.sun.el.parser.AstValue.getValue(AstValue.java:127)
        at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:206)
        at javax.faces.component.UIOutput.getValue(UIOutput.java:173)
        at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getValue(HtmlBasicInputRenderer.java:189)
        at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.getCurrentValue(HtmlBasicRenderer.java:320)
        at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeEnd(HtmlBasicRenderer.java:200)
        at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:836)
        at javax.faces.component.UIComponent.encodeAll(UIComponent.java:896)
        at javax.faces.render.Renderer.encodeChildren(Renderer.java:137)
        at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:812)
        at javax.faces.component.UIComponent.encodeAll(UIComponent.java:886)
        at javax.faces.component.UIComponent.encodeAll(UIComponent.java:892)
        at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:245)
        at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
        at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:106)
        at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:251)
        at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
        at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
        at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:427)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:315)
        at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:287)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:218)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:648)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:593)
        at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
        at com.sun.enterprise.web.PESessionLockingStandardPipeline.invoke(PESessionLockingStandardPipeline.java:98)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:222)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:648)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:593)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:587)
        at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1096)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:166)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:648)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:593)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:587)
        at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1096)
        at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:288)
        at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:647)
        at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:579)
        at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:831)
        at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
        at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
        at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
        at com.sun.enterprise.web.portunif.PortUnificationPipeline$PUTask.doTask(PortUnificationPipeline.java:380)
        at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
        at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
classLoader = WebappClassLoader
  delegate: true
  repositories:
    /WEB-INF/classes/
----------> Parent Classloader:
EJBClassLoader : 
urlSet = [URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/commons-beanutils.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/commons-collections.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/commons-digester.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/commons-logging.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/log4j.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/log4j-core.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/jsf-api.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/jstl.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/TFE-ejb_jar/, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/TFE-ejb.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/TFE-war_war/WEB-INF/classes/, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/TFE-war_war/WEB-INF/lib/jsf-impl.jar, URLEntry : file:/C:/Users/Denis/Documents/NetBeansProjects/TFE/dist/gfdeploy/TFE-war_war/WEB-INF/lib/standard.jar, URLEntry : file:/C:/Sun/AppServer/domains/domain1/generated/ejb/j2ee-apps/TFE/]
doneCalled = false 
 Parent -> EJBClassLoader : 
urlSet = []
doneCalled = false 
 Parent -> java.net.URLClassLoader@9ac0f5
SharedSecrets.getJavaNetAccess()=java.net.URLClassLoader$7@3a5631
CORE5022 : Tous les ejb de [TFE] ont été déchargés avec succès !
deployed with moduleid = TFE
The alias name for the entity class [class be.isl.TFE.entity.Category] is being defaulted to: Category.
The column name for element [private java.lang.Long be.isl.TFE.entity.Category.cat_id] is being defaulted to: CAT_ID.
The alias name for the entity class [class be.isl.TFE.entity.Announcement] is being defaulted to: Announcement.
The column name for element [private java.lang.Long be.isl.TFE.entity.Announcement.announc_id] is being defaulted to: ANNOUNC_ID.
The column name for element [private java.util.Date be.isl.TFE.entity.Announcement.ann_date] is being defaulted to: ANN_DATE.
The alias name for the entity class [class be.isl.TFE.entity.ListItem] is being defaulted to: ListItem.
The column name for element [private java.lang.Long be.isl.TFE.entity.ListItem.list_item_id] is being defaulted to: LIST_ITEM_ID.
The alias name for the entity class [class be.isl.TFE.entity.Item] is being defaulted to: Item.
The column name for element [private java.lang.Long be.isl.TFE.entity.Item.item_id] is being defaulted to: ITEM_ID.
The alias name for the entity class [class be.isl.TFE.entity.PList] is being defaulted to: PList.
The column name for element [private java.lang.Long be.isl.TFE.entity.PList.list_id] is being defaulted to: LIST_ID.
The alias name for the entity class [class be.isl.TFE.entity.Customer] is being defaulted to: Customer.
The column name for element [private java.lang.Long be.isl.TFE.entity.Customer.cust_id] is being defaulted to: CUST_ID.
The alias name for the entity class [class be.isl.TFE.entity.Type] is being defaulted to: Type.
The column name for element [private java.lang.Long be.isl.TFE.entity.Type.type_id] is being defaulted to: TYPE_ID.
The alias name for the entity class [class be.isl.TFE.entity.Purchase] is being defaulted to: Purchase.
The column name for element [private java.lang.Long be.isl.TFE.entity.Purchase.purch_id] is being defaulted to: PURCH_ID.
The alias name for the entity class [class be.isl.TFE.entity.Country] is being defaulted to: Country.
The column name for element [private java.lang.Long be.isl.TFE.entity.Country.country_id] is being defaulted to: COUNTRY_ID.
The alias name for the entity class [class be.isl.TFE.entity.Shipping] is being defaulted to: Shipping.
The column name for element [private java.lang.Long be.isl.TFE.entity.Shipping.ship_id] is being defaulted to: SHIP_ID.
The alias name for the entity class [class be.isl.TFE.entity.Status] is being defaulted to: Status.
The column name for element [private java.lang.Long be.isl.TFE.entity.Status.status_id] is being defaulted to: STATUS_ID.
The alias name for the entity class [class be.isl.TFE.entity.Address] is being defaulted to: Address.
The column name for element [private java.lang.Long be.isl.TFE.entity.Address.add_id] is being defaulted to: ADD_ID.
The alias name for the entity class [class be.isl.TFE.entity.CustList] is being defaulted to: CustList.
The column name for element [private java.lang.Long be.isl.TFE.entity.CustList.cust_list_id] is being defaulted to: CUST_LIST_ID.
The target entity (reference) class for the one to one mapping element [private be.isl.TFE.entity.Address be.isl.TFE.entity.Shipping.address] is being defaulted to: class be.isl.TFE.entity.Address.
The primary key column name for the mapping element [private be.isl.TFE.entity.Address be.isl.TFE.entity.Shipping.address] is being defaulted to: ADD_ID.
The target entity (reference) class for the one to one mapping element [private be.isl.TFE.entity.Address be.isl.TFE.entity.Customer.address] is being defaulted to: class be.isl.TFE.entity.Address.
The primary key column name for the mapping element [private be.isl.TFE.entity.Address be.isl.TFE.entity.Customer.address] is being defaulted to: ADD_ID.
The target entity (reference) class for the one to many mapping element [private java.util.List be.isl.TFE.entity.Customer.lists] is being defaulted to: class be.isl.TFE.entity.PList.
The target entity (reference) class for the many to one mapping element [private be.isl.TFE.entity.Customer be.isl.TFE.entity.PList.customer] is being defaulted to: class be.isl.TFE.entity.Customer.
The primary key column name for the mapping element [private be.isl.TFE.entity.Customer be.isl.TFE.entity.PList.customer] is being defaulted to: CUST_ID.
The foreign key column name for the mapping element [private be.isl.TFE.entity.Customer be.isl.TFE.entity.PList.customer] is being defaulted to: CUSTOMER_CUST_ID.
The target entity (reference) class for the one to many mapping element [private java.util.List be.isl.TFE.entity.CustList.status_s] is being defaulted to: class be.isl.TFE.entity.Status.
The source primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.CustList.status_s] is being defaulted to: CUST_LIST_ID.
The target primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.CustList.status_s] is being defaulted to: STATUS_ID.
The target entity (reference) class for the many to one mapping element [private be.isl.TFE.entity.Category be.isl.TFE.entity.Item.category] is being defaulted to: class be.isl.TFE.entity.Category.
The primary key column name for the mapping element [private be.isl.TFE.entity.Category be.isl.TFE.entity.Item.category] is being defaulted to: CAT_ID.
The target entity (reference) class for the many to many mapping element [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: class be.isl.TFE.entity.PList.
The join table name for the many to many mapping [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: t_item_t_list.
The source primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: ITEM_ID.
The source foreign key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: Item_ITEM_ID.
The target primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: LIST_ID.
The target foreign key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.Item.plists] is being defaulted to: plists_LIST_ID.
The target entity (reference) class for the one to many mapping element [private java.util.List be.isl.TFE.entity.Category.items] is being defaulted to: class be.isl.TFE.entity.Item.
The target entity (reference) class for the one to one mapping element [private be.isl.TFE.entity.Shipping be.isl.TFE.entity.PList.shipping] is being defaulted to: class be.isl.TFE.entity.Shipping.
The primary key column name for the mapping element [private be.isl.TFE.entity.Shipping be.isl.TFE.entity.PList.shipping] is being defaulted to: SHIP_ID.
The target entity (reference) class for the many to many mapping element [private java.util.List be.isl.TFE.entity.PList.items] is being defaulted to: class be.isl.TFE.entity.Item.
The source primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.items] is being defaulted to: LIST_ID.
The target primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.items] is being defaulted to: ITEM_ID.
The target entity (reference) class for the one to many mapping element [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: class be.isl.TFE.entity.Announcement.
The join table name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: t_list_t_announcement.
The source primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: LIST_ID.
The source foreign key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: PList_LIST_ID.
The target primary key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: ANNOUNC_ID.
The target foreign key column name for the many to many mapping [private java.util.List be.isl.TFE.entity.PList.announcements] is being defaulted to: announcements_ANNOUNC_ID.
The target entity (reference) class for the many to one mapping element [private be.isl.TFE.entity.Type be.isl.TFE.entity.PList.type] is being defaulted to: class be.isl.TFE.entity.Type.
The primary key column name for the mapping element [private be.isl.TFE.entity.Type be.isl.TFE.entity.PList.type] is being defaulted to: TYPE_ID.
The target entity (reference) class for the one to many mapping element [private java.util.List be.isl.TFE.entity.Type.lists] is being defaulted to: class be.isl.TFE.entity.PList.
The target entity (reference) class for the many to one mapping element [private be.isl.TFE.entity.PList be.isl.TFE.entity.Announcement.plist] is being defaulted to: class be.isl.TFE.entity.PList.
The primary key column name for the mapping element [private be.isl.TFE.entity.PList be.isl.TFE.entity.Announcement.plist] is being defaulted to: LIST_ID.
The target entity (reference) class for the one to one mapping element [private be.isl.TFE.entity.Country be.isl.TFE.entity.Address.country] is being defaulted to: class be.isl.TFE.entity.Country.
The primary key column name for the mapping element [private be.isl.TFE.entity.Country be.isl.TFE.entity.Address.country] is being defaulted to: COUNTRY_ID.
be.isl.TFE.entity.PList actually got transformed
be.isl.TFE.entity.Announcement actually got transformed
naming.bind
naming.bind
naming.bind
LDR5010 : Tous les ejb de [TFE] chargés avec succès !
Initializing Sun's JavaServer Faces implementation (1.2_04-b22-p05) for context '/TFE-war'