[JBoss JIRA] Created: (JBMICROCONT-174) Add API for dynamic aliases
by Adrian Brock (JIRA)
Add API for dynamic aliases
---------------------------
Key: JBMICROCONT-174
URL: http://jira.jboss.com/jira/browse/JBMICROCONT-174
Project: JBoss MicroContainer
Issue Type: Sub-task
Components: Dependency
Reporter: Adrian Brock
Fix For: JBossMC_2_0_0_CR1
Besides the static aliases defined upfront in for example the beans xml,
an additional feature is to be able to add dynamic aliases as well.
For example. If a bean is deployed with something like:
<bean name="POJOName">
<annotation>@JMX(objectName="com.acme:a=b")</annotation>
Then that ObjectName could also be an alias for POJOName context added "dynamically" by the JMX Decorator.
This would involve two new methods on the Controller interface:
addAlias(Object alias, Object original);
removeAlias(Object alias);
Initially, for simplicty, we should apply the following constraints:
1) The "original" name must already exist.
2) The person that adds the alias is expected to remove the alias.
A full solution would require keeping track of aliases and originals and also define a correct way of handling
broken aliases with the caller having to do it themselves.
--
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
19 years
[JBoss JIRA] Created: (JBPORTAL-1568) Pagination cannot handle more than 120 elements
by Thomas Heute (JIRA)
Pagination cannot handle more than 120 elements
-----------------------------------------------
Key: JBPORTAL-1568
URL: http://jira.jboss.com/jira/browse/JBPORTAL-1568
Project: JBoss Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Portal Core Admin
Affects Versions: 2.6 Final
Reporter: Thomas Heute
Assigned To: Thomas Heute
Fix For: 2.6.1 Final
portlet instances tab the numbering uses negative number, it goes 0,20,40,60,80,100,120,-116,-96,-76,-56,36,-16,4,24 etc...
--
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
19 years
[JBoss JIRA] Created: (JBAS-4534) Problem with "Double Isolation" configured for webapps
by Adrian Brock (JIRA)
Problem with "Double Isolation" configured for webapps
------------------------------------------------------
Key: JBAS-4534
URL: http://jira.jboss.com/jira/browse/JBAS-4534
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: ClassLoading
Affects Versions: JBossAS-4.2.1.GA
Reporter: Adrian Brock
Assigned To: Adrian Brock
Fix For: JBossAS-4.2.2.GA
A customer has reported a problem where configuring "double isolation" for web-apps causes problems.
By "double isolation" I mean JBoss is already configured to provide servlet spec style isolation
(parent delegation is false), but then the webapp configures it again in jboss-web.xml
<class-loading java2ClassLoadingCompliance="false">
<loader-repository>
xxx:loader=yyy
<loader-repository-config>java2ParentDelegation=false</loader-repository-config>
</loader-repository>
</class-loading>
This at least causes problems when initializing a servlet context listener, e.g
with the Spring context listener
2007-07-10 12:47:04,078 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/context]] Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
java.lang.NoClassDefFoundError: java/util/Set
at org.springframework.core.io.ClassPathResource.<init>(ClassPathResource.java:95)
at org.springframework.web.context.ContextLoader.<clinit>(ContextLoader.java:133)
at org.springframework.web.context.ContextLoaderListener.createContextLoader(ContextLoaderListener.java:57)
at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:48)
--
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
19 years