[JBoss JIRA] Created: (JBIDE-4166) Seam Web EAR project using Seam 2.1.1.GA does not work on JBoss AS 4.2.3
by Bruce Link (JIRA)
Seam Web EAR project using Seam 2.1.1.GA does not work on JBoss AS 4.2.3
------------------------------------------------------------------------
Key: JBIDE-4166
URL: https://jira.jboss.org/jira/browse/JBIDE-4166
Project: Tools (JBoss Tools)
Issue Type: Bug
Affects Versions: 3.0.0.GA
Environment: Windows XP, JBoss AS 4.2.3, Seam 2.1.1.GA, Eclipse 3.4.2, JBoss Tools 3.0.0.GA plus nightly 3.0.1 updates
Reporter: Bruce Link
Created new seam web project using mysql connection (File>new>Seam Web Project) Select EAR project with seam 2.1.1.GA
Ran project on JBoss 4.2.3 from JBoss Tools
Get warning:
13:40:57,481 WARN [MainDeployer] Found non-jar deployer for jboss-seam.jar: MBeanProxyExt[jboss.ejb3:service=EJB3Deployer]
13:40:57,919 WARN [DeploymentInfo] Only the root deployment can set the loader repository, ignoring config=LoaderRepositoryConfig(repositoryName: seam.jboss.org:loader=infosys, repositoryClassName: org.jboss.mx.loading.HeirarchicalLoaderRepository3, configParserClassName: org.jboss.mx.loading.HeirarchicalLoaderRepository3ConfigParser, repositoryConfig: java2ParentDelegation=false)
Project failed to run
:13:41:21,513 WARN [SeamPhaseListener] uncaught exception, passing to exception handler
java.lang.IllegalStateException: No phase id bound to current thread (make sure you do not have two SeamPhaseListener instances installed)
Traceback similar to post in JBoss Forum
Exporting ear file works (when ear file copied manually to deploy folder, along with ds file)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 9 months
[JBoss JIRA] Created: (JBIDE-2016) There are issues with the feature "code completion now respect "var" attributes in e.g. h:dataTable"
by Adrian Mitev (JIRA)
There are issues with the feature "code completion now respect "var" attributes in e.g. h:dataTable"
----------------------------------------------------------------------------------------------------
Key: JBIDE-2016
URL: http://jira.jboss.com/jira/browse/JBIDE-2016
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jsp/jsf/xml source editing
Environment: jboss tools nightly build 0404/2008, windows vista,
Reporter: Adrian Mitev
Attachments: pic1.jpg
Having the following code:
<h:dataTable value="#{myBean.users}" var="user">
<h:column>
<h:outputText value="#{user" />
</h:column>
</h:dataTable>
public class MyBean {
private List<User> users;
//getters and setters for users
}
public class User {
private String userName;
//getter and setter for userName
}
--------------------------
When the project is seam project and the class MyBean is annotated with @Name("myBean"), the CA in the dataTable works as expected.
When the project is seam project and the class MyBean is NOT annotated with @Name, but it's defined as managed bean in faces-config.xml there is CA only for the var of the datatable, but not for the properties of the var - see pic1.jps
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 9 months