You need to enable JavaScript to view more than 15 articles by this author.
An Introduction to Aspect-Oriented Programming with the Spring Framework, Part 2
Publish Date: Oct. 20, 2004
Russ Miles continues his introduction to Aspect-Oriented Programming (AOP) in Spring by delving into the around advice, which allows you to not just add to an existing method implementation, but to completely replace it.
Monitoring Local and Remote Applications Using JMX 1.2 and JConsole
Publish Date: Sep. 29, 2004
The latest release of Java, J2SE 5.0 (codenamed Tiger), formally adds support for the Java Management Extensions (JMX) 1.2. Russ Miles walks you through how to use the JMX support in J2SE 5.0, including the new JConsole application, to monitor and manage your own applications both locally and remotely.
An Introduction to Aspect-Oriented Programming with the Spring Framework, Part 1
Publish Date: Jul. 14, 2004
The Spring framework, which supports development of the different facets of J2EE, provides an aspect-oriented programming module that gives Spring developers the opportunity to apply aspects to their applications. This article shows you how to work with AOP in Spring.
Lazy Loading with Aspects
Publish Date: Mar. 17, 2004
AspectJ allows the Java community to apply modular crosscutting concerns, or aspects, to their applications. Lazy loading is one such crosscutting concern that can benefit from an Aspect-Oriented, rather than traditional Object-Oriented, implementation approach. This article presents an implementation of lazy loading using AspectJ.