[SpringBoot] ActiveMq 설정 및 실습
·
Springboot
설정의존성 추가 build.gradleimplementation 'org.springframework.boot:spring-boot-starter-activemq' Configuration Class 추가@Configuration@EnableJms@Slf4jpublic class ActiveMqConfig { @Value("${spring.activemq.broker-url}") private String activemqBrokerUrl; @Value("${spring.activemq.user}") private String activemqUsername; @Value("${spring.activemq.password}") private String activemqPass..