rabbitmq-plus

Parent pom for all Fizzed maven projects

License

License

GroupId

GroupId

com.fizzed
ArtifactId

ArtifactId

rabbitmq-plus
Last Version

Last Version

0.0.6
Release Date

Release Date

Type

Type

pom
Description

Description

rabbitmq-plus
Parent pom for all Fizzed maven projects
Project Organization

Project Organization

Fizzed, Inc
Source Code Management

Source Code Management

https://github.com/fizzed/rabbitmq-plus

Download rabbitmq-plus

Filename Size
rabbitmq-plus-0.0.6.pom 7 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/com.fizzed/rabbitmq-plus/ -->
<dependency>
    <groupId>com.fizzed</groupId>
    <artifactId>rabbitmq-plus</artifactId>
    <version>0.0.6</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.fizzed/rabbitmq-plus/
implementation 'com.fizzed:rabbitmq-plus:0.0.6'
// https://jarcasting.com/artifacts/com.fizzed/rabbitmq-plus/
implementation ("com.fizzed:rabbitmq-plus:0.0.6")
'com.fizzed:rabbitmq-plus:pom:0.0.6'
<dependency org="com.fizzed" name="rabbitmq-plus" rev="0.0.6">
  <artifact name="rabbitmq-plus" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.fizzed', module='rabbitmq-plus', version='0.0.6')
)
libraryDependencies += "com.fizzed" % "rabbitmq-plus" % "0.0.6"
[com.fizzed/rabbitmq-plus "0.0.6"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • rabbitmq-util
  • rabbitmq-ninja-demo
  • rabbitmq-ninja-module

RabbitMQ Plus by Fizzed

Maven Central

Fizzed, Inc. (Follow on Twitter: @fizzed_inc)

Overview

Utilities and framework integrations for Java and RabbitMQ. Includes an integration of RabbitMQ with the Ninja Framework.

Connection Pool and Other Helpers

Setup

<dependency>
    <groupId>com.fizzed</groupId>
    <artifactId>rabbitmq-util</artifactId>
    <version>0.0.5</version>
</dependency>

Browse the utilities in https://github.com/fizzed/rabbitmq-plus/tree/master/rabbitmq-util/src/main/java/com/fizzed/rabbitmq/util

Ninja Framework

Ninja Framework module for RabbitMQ. Will help provide connectivity to RabbitMQ, a connection pool, and session providers.

Setup

Add the rabbitmq-ninja-module dependency to your Maven pom.xml

<dependency>
    <groupId>com.fizzed</groupId>
    <artifactId>rabbitmq-ninja-module</artifactId>
    <version>0.0.5</version>
</dependency>

In your conf/Module.java file:

package conf;

import com.fizzed.rabbitmq.ninja.NinjaRabbitModule;
import com.google.inject.AbstractModule;

public class Module extends AbstractModule {

    @Override
    protected void configure() {
        install(new NinjaRabbitModule());
    }

}

In your conf/application.conf file:

#
# rabbitmq
#
rabbitmq.verify_queues = test.request
rabbitmq.url = amqp://localhost:5672
rabbitmq.user = root
rabbitmq.password = test
rabbitmq.pool.min_idle = 0
#rabbitmq.pool.max_idle = 0
rabbitmq.pool.evictable_idle_time_millis = 10000

License

Copyright (C) 2020 Fizzed, Inc.

This work is licensed under the Apache License, Version 2.0. See LICENSE for details.

com.fizzed

Fizzed, Inc.

Helping companies launch and grow their mobile, web, and data products

Versions

Version
0.0.6
0.0.5