• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Autoproxying @AspectJ aspects

 
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello everybody,
I am trying to execute the program given in section 4.3.2 in Spring in action 2nd edition. So I defined following files.

Audience.java
---------------------


applicationContext.xml
------------------------------------

TestMain.java
-----------------------

Instrument.java
-------------------------

Instrumentalist.java
--------------------------------

PerformanceException.java
--------------------------------------


Performer.java
-----------------


Saxophone.java
--------------------


I am getting the following exception

Can any body tell where I am doing wrong!!! I have posted this in another forum also(http://www.manning-sandbox.com/thread.jspa?threadID=38827&tstart=0)

Thanks
Vivek
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@AfterThrowing("perfomance()") -> @AfterThrowing("performance()")
 
Vivek Alampally
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you so much. I did the above mentioned change. Now it works.
 
Christophe Verré
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Don't forget to write that at Manning's forum !
 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I had a similar problem. Thank you.
 
reply
    Bookmark Topic Watch Topic
  • New Topic