Log in to follow, share, and participate in this community.
Thread AOP and MC integration tasks
AOP and MC integration tasksHi Is there any additional tasks that need to be created in respect to the Microcontainer/AOP integration? If not we can close: http://jira.jboss.com/jira/browse/JBAOP-232Create JIRA issues for TODOs in the Microco...
AOP ClassLoader/Scoping needs thoroughly revisingThere is a fundamentally bad assumption going on with AOP usage of classloading and scoping. The problem is exemplified by this code in ScopedClassLoaderDomain (but it is a more general issue that I will explain as I ...
Annotations for Typed AdvicesHello everyone! One of the great features we are adding to JBoss AOP 2.0 are the typed advices (before/after/after-throwing/finally). Currently, only the configuration of those by xml is implemented: <bind pointc...
Removing dependency on concurrent.jarManik requested that I look into making AOP 2.0 independent of concurrent.jar. I've replaces all references to EDU.oswego classes with their java.util.concurrent counteparts. All works fine, apart from org.jboss.aop....
Hudson testsAOP 2.0 is now being built and tested on Hudson. We are currently only doing it with JDK 5 against AS 4.2.0 http://dev45.qa.atl.jboss.com:8585/hudson/job/jboss-aop-jbossas-4.2.0.GA/ but we are in the process of adding...
AOP on JBOSS_HOME/clientAOP is being used by JBoss Messaging clients, however AOP is not available at /client. Shouldn't aop be added to $JBOSS_HOME/client. I believe EJB3 would also make use of AOP proxies on clients. This would make depe...
JBoss Logging and JBoss AOPI'd like to integrate JBoss AOP with JBoss Logging at some stage, at least when deployed in jboss. The reason logging is not included is from before my time, so if somebody can tell me why integrating with JBoss Logg...
Separate AOP core and aspect libraryIn AOP 1.5.x we are releasing jboss-aop and the jboss-aspect-library as part of the AOP releases. This is not ideal since jboss-aspect-library contains both the app-server integration (tied to AOP release) and the asp...
Woven class compatibilityRegarding http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031144#4031144 I've added a test target to the aop 2.0.0 testsuite to ensure that code woven with the "ClassicInstrumentor" in JBoss AOP 1.5...
Thread MethodInvocation.getArguments return value for 0 arguments
MethodInvocation.getArguments return value for 0 argumentsHi, I'm trying to debug this problem: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=104450&postdays=0&postorder=asc&start=10. The exception is thrown from this aspect: public Object h...
AspectFactory and classloadingI was wondering why GenericAspectFactory uses the thread context class loader by default to load aspect classes?
public Class getClazz()
{
....
{
clazz = Thread.currentThread().getContextClassLoader().loadClas...
Trimmed down AOP 1.5.x branchI've got rid of most of the modules from the AOP 1.5.x branch which were just noise anyway. If you now check out https://svn.jboss.org/repos/jbossas/branches/Branch_AOP_1_5/ from subversion, you will have a lot less p...
Closures, better aop support in jdk7?I viewed the closure talk Jason sent out a link to: http://video.google.com/videoplay?docid=4051253555018153503&q=engEDU The www.javac.info has several links to closure related stuff, but its not responding this ...
Thread JBAOP-368, Need to correct the ProtectionDomain used to defi
JBAOP-368, Need to correct the ProtectionDomain used to defiA problem I have run into while looking at running jboss5 under a security manager is that the interceptor class is not being created with a useful ProtectionDomain/CodeSource. It should be using the CodeSource of the...
JBAS-2100 AOP integration in JBoss5We need a release beyond the current aop snapshot incorporated into head. I'm using the current JBAS-2100 to track that. Is this doable over the next week?
Pointcut testsI've added a test for testing pointcuts in org.jboss.test.aop.pointcut.PointcutTester. I've made no attempt to include everything that should work right now, but just something to keep in mind if you a) Ever extend t...
Update to maven pom.xmlI updated the maven build script (pom.xml) because I noticed a couple things weren't working (missing dependencies, some files not compiling). A couple things to note: the JRockit source files are skipped because they...
Array interception needed for jboss cacheI have commited an initial prototype of the array interception needed for POJO Cache. It is available in svn in a separate branch:
$ svn co https://svn.jboss.org/repos/jbossas/projects/aop/branches/arrays/ jboss-ao...
JBoss AOP standalone buildI have pulled out JBoss AOP from the as trunk build into its own repository location, and this is now included as a thirdparty library into both JBoss 5 and JBoss 4. To get at the sources for jboss aop you need to ch...
org.jboss.aop.Dispatcher error?As far as I can see this code in the org.jboss.aop.Dispatcher.invoke is a copy/paste error that should be using Proxy in place of ClassProxy:
...
else if (target instanceof Proxy)
{
ClassProxy proxy = (ClassProx...