Book Image

Spring 2.5 Aspect Oriented Programming

Book Image

Spring 2.5 Aspect Oriented Programming

Overview of this book

Developing powerful web applications with clean, manageable code makes the maintenance process much easier. Aspect-Oriented Programming (AOP) is the easiest and quickest way to achieve such results. Spring is the only Java framework to offer AOP features. The combined power of Spring and AOP gives a powerful and flexible platform to develop and maintain feature-rich web applications quickly. This book will help you to write clean, manageable code for your Java applications quickly, utilizing the combined power of Spring and AOP. You will master the concepts of AOP by developing several real-life AOP-based applications with the Spring Framework, implementing the basic components of Spring AOP: Advice, Joinpoint, Pointcut, and Advisor. This book will teach you everything you need to know to use AOP with Spring. It starts by explaining the AOP features of Spring and then moves ahead with configuring Spring AOP and using its core classes, with lot of examples. It moves on to explain the AspectJ support in Spring. Then you will develop a three-layered example web application designed with Domain-Driven Design (DDD) and built with Test-Driven Development methodology using the full potential of AOP for security, concurrency, caching, and transactions.
Table of Contents (13 chapters)

Apache Tomcat


Apache Tomcat is a Servlet container and allows deployment of web applications, based on the servlet application model.

Spring MVC, used in Chapter 7, is based on Spring DispatcherServlet.

Now we'll see how to download, install, and configure Tomcat on Linux, MacOSX, and Microsoft Windows.

Ubuntu Linux

Go to the Tomcat site at http://tomcat.apache.org/.

The Apache Tomcat home page shows the Tomcat version, according to the Servlet and JSP specification version.

We choose the latest version (6.0.18 at the time of writing the book) from apache-tomcat-6.0.18.tar.gz and download it, as shown in the following image:

Before unpacking and running Tomcat, we must create a Tomcat user with limited privileges to execute it.

Create the Tomcat user with the following shell command:

sudo adduser tomcat

In the following image we see the result of the adduser command, like adding the new group tomcat, and setting the password for this new user.

After creating the Tomcat user, we unpack the Tomcat...