forked from spring-projects/spring-amqp-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
44 changed files
with
2,836 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,223 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.springframework.samples.spring</groupId> | ||
<artifactId>spring-rabbit-log4j</artifactId> | ||
<version>1.0.0.BUILD-SNAPSHOT</version> | ||
<packaging>war</packaging> | ||
<name>Spring AMQP log4j</name> | ||
<url>http://www.springframework.org</url> | ||
<description> | ||
<![CDATA[ | ||
This project shows the usage of Spring AMQP integration with 'log4j'. | ||
]]> | ||
</description> | ||
<properties> | ||
<maven.test.failure.ignore>true</maven.test.failure.ignore> | ||
<spring.framework.version>3.0.5.RELEASE</spring.framework.version> | ||
<spring.amqp.version>1.0.0.BUILD-SNAPSHOT</spring.amqp.version> | ||
<spring.amqp.version.2>1.0.0.M2</spring.amqp.version.2> | ||
</properties> | ||
<profiles> | ||
<profile> | ||
<id>strict</id> | ||
<properties> | ||
<maven.test.failure.ignore>false</maven.test.failure.ignore> | ||
</properties> | ||
</profile> | ||
</profiles> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>org.springframework.amqp</groupId> | ||
<artifactId>spring-amqp</artifactId> | ||
<version>${spring.amqp.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.amqp</groupId> | ||
<artifactId>spring-rabbit</artifactId> | ||
<version>${spring.amqp.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-test</artifactId> | ||
<version>${spring.framework.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context-support</artifactId> | ||
<version>${spring.framework.version}</version> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-aop</artifactId> | ||
<version>${spring.framework.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-oxm</artifactId> | ||
<version>${spring.framework.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-webmvc</artifactId> | ||
<version>${spring.framework.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>servlet-api</artifactId> | ||
<version>2.5</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>jstl</artifactId> | ||
<version>1.1.2</version> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<artifactId>standard</artifactId> | ||
<groupId>taglibs</groupId> | ||
<version>1.1.2</version> | ||
<type>jar</type> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>cglib</groupId> | ||
<artifactId>cglib-nodep</artifactId> | ||
<version>2.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>aspectj</groupId> | ||
<artifactId>aspectjrt</artifactId> | ||
<version>1.5.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>aspectj</groupId> | ||
<artifactId>aspectjweaver</artifactId> | ||
<version>1.5.4</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.codehaus.jackson</groupId> | ||
<artifactId>jackson-mapper-asl</artifactId> | ||
<version>1.4.3</version> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.16</version> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.jgoodies</groupId> | ||
<artifactId>forms</artifactId> | ||
<version>1.2.1</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.springsource.bundlor</groupId> | ||
<artifactId>com.springsource.bundlor.maven</artifactId> | ||
<version>1.0.0.M1B</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<inherited>false</inherited> | ||
<configuration> | ||
<descriptorRefs> | ||
<descriptorRef>project</descriptorRef> | ||
</descriptorRefs> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.mortbay.jetty</groupId> | ||
<artifactId>maven-jetty-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<source>1.5</source> | ||
<target>1.5</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<!--forkMode>pertest</forkMode --> | ||
<includes> | ||
<include>**/*Tests.java</include> | ||
</includes> | ||
<excludes> | ||
<exclude>**/Abstract*.java</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>Codehaus</id> | ||
<url>http://repository.codehaus.org/</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
<distributionManagement> | ||
<downloadUrl>http://www.springframework.org/download</downloadUrl> | ||
<site> | ||
<id>staging</id> | ||
<url>file:///${user.dir}/target/staging/org.springframework.batch.archetype/${pom.artifactId}</url> | ||
</site> | ||
<repository> | ||
<id>spring-release</id> | ||
<name>Spring Release Repository</name> | ||
<url>file:///${user.dir}/target/staging/release</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>spring-snapshot</id> | ||
<name>Spring Snapshot Repository</name> | ||
<url>file:///${user.dir}/target/staging/snapshot</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
<repositories> | ||
<repository> | ||
<id>repository.springframework.maven.milestone</id> | ||
<name>Spring Framework Maven Milestone Repository</name> | ||
<url>http://maven.springframework.org/milestone</url> | ||
</repository> | ||
<repository> | ||
<id>repository.springframework.maven.snapshot</id> | ||
<name>Spring Framework Maven Snapshot Repository</name> | ||
<url>http://maven.springframework.org/snapshot</url> | ||
</repository> | ||
</repositories> | ||
</project> | ||
|
107 changes: 107 additions & 0 deletions
107
...n/java/org/springframework/amqp/rabbit/log4j/config/server/RabbitServerConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
/* | ||
* Copyright 2002-2010 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package org.springframework.amqp.rabbit.log4j.config.server; | ||
|
||
import org.apache.log4j.Level; | ||
import org.springframework.amqp.core.AmqpAdmin; | ||
import org.springframework.amqp.core.Binding; | ||
import org.springframework.amqp.core.BindingBuilder; | ||
import org.springframework.amqp.core.Queue; | ||
import org.springframework.amqp.core.TopicExchange; | ||
import org.springframework.amqp.rabbit.connection.CachingConnectionFactory; | ||
import org.springframework.amqp.rabbit.connection.ConnectionFactory; | ||
import org.springframework.amqp.rabbit.core.RabbitAdmin; | ||
import org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer; | ||
import org.springframework.amqp.rabbit.listener.adapter.MessageListenerAdapter; | ||
import org.springframework.amqp.rabbit.log4j.converter.AmqpLogMessageConverter; | ||
import org.springframework.amqp.rabbit.log4j.listener.AmqpLogMessageListener; | ||
import org.springframework.amqp.support.converter.MessageConverter; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
/** | ||
* Configuration for Server. | ||
* | ||
* @author Tomas Lukosius | ||
*/ | ||
@Configuration | ||
public class RabbitServerConfiguration { | ||
|
||
/** | ||
* Shared topic exchange used for publishing log4j messages (e.g. debug statements) | ||
*/ | ||
public static String LOG_EXCHANGE_NAME = "app.log4j.log"; | ||
public static String LOG_QUEUE_NAME = "app.log4j.demo"; | ||
public static String LOG_ALL_INFO_ROUTING_KEY = "#." + Level.INFO.toString(); | ||
|
||
private int port = 5672; | ||
|
||
@Bean | ||
public ConnectionFactory connectionFactory() { | ||
CachingConnectionFactory connectionFactory = new CachingConnectionFactory("localhost"); | ||
connectionFactory.setUsername("guest"); | ||
connectionFactory.setPassword("guest"); | ||
connectionFactory.setPort(port); | ||
return connectionFactory; | ||
} | ||
|
||
@Bean | ||
public MessageConverter amqpLogMessageConverter() { | ||
return new AmqpLogMessageConverter(); | ||
} | ||
|
||
@Bean | ||
public TopicExchange logExchange() { | ||
return new TopicExchange(LOG_EXCHANGE_NAME, false, false); | ||
} | ||
|
||
/** | ||
* @return the admin bean that can declare queues etc. | ||
*/ | ||
@Bean | ||
public AmqpAdmin amqpAdmin() { | ||
RabbitAdmin rabbitAdmin = new RabbitAdmin(connectionFactory()); | ||
rabbitAdmin.setAutoStartup(true); | ||
return rabbitAdmin; | ||
} | ||
|
||
@Bean | ||
public Queue queue() { | ||
return new Queue(LOG_QUEUE_NAME); | ||
} | ||
|
||
@Bean | ||
public Binding binding() { | ||
return BindingBuilder.from(queue()).to(logExchange()).with(LOG_ALL_INFO_ROUTING_KEY); | ||
} | ||
|
||
@Bean | ||
public AmqpLogMessageListener messageListener() { | ||
return new AmqpLogMessageListener(); | ||
} | ||
|
||
@Bean | ||
public SimpleMessageListenerContainer listenerContainer() { | ||
SimpleMessageListenerContainer container = new SimpleMessageListenerContainer(); | ||
container.setConnectionFactory(connectionFactory()); | ||
container.setQueueNames(LOG_QUEUE_NAME); | ||
|
||
MessageListenerAdapter listenerAdapter = new MessageListenerAdapter(messageListener(), | ||
new AmqpLogMessageConverter()); | ||
listenerAdapter.setDefaultListenerMethod("handleLog"); | ||
|
||
container.setMessageListener(listenerAdapter); | ||
return container; | ||
} | ||
} |
Oops, something went wrong.