File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ Install RabbitMQ on windows:
2+
3+ 1. Download RabbitMQ:
4+ https://www.rabbitmq.com/install-windows.html
5+
6+ 2. Download and install Erlang:
7+ http://www.erlang.org/downloads
8+
9+ select the link: "OTP 20.3 Windows 64-bit Binary File (99142192)"
10+
11+ 3. Install the Server:
12+ Run the RabbitMQ installer, rabbitmq-server-3.7.5.exe. It installs RabbitMQ as a Windows service and
13+ starts it using the default configuration.
14+
15+ 4. Run RabbitMQ Service:
16+ The service will run fine using its default settings. The RabbitMQ service starts automatically. You can
17+ stop/reinstall/start the RabbitMQ service from the Start Menu.
18+
19+ 5. Maven Dependency:
20+
21+ <dependency>
22+ <groupId>org.springframework.boot</groupId>
23+ <artifactId>spring-boot-starter-amqp</artifactId>
24+ </dependency>
25+
26+ 6. Following to be added in application.properties of spring boot:
27+
28+ spring.rabbitmq.host = 127.0.0.1
29+ spring.rabbitmq.port = 5672
You can’t perform that action at this time.
0 commit comments