Registry / messaging / spring-jms

spring-jms

JSON →
library7.0.7javamavenunverified

Spring JMS provides a JMS (Java Message Service) integration framework for Spring applications.

<dependency> <groupId>org.springframework</groupId> <artifactId>spring-jms</artifactId> <version>7.0.7</version> </dependency>
INSTALL
IMPORT
SIG · SPRING-JMS
S
spring-jms
messagingjavav7.0.7
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

JmsTemplate
org.springframework.jms.core.JmsTemplate

Send a message using JmsTemplate.

import org.springframework.jms.core.JmsTemplate; import org.springframework.context.annotation.AnnotationConfigApplicationContext; public class Quickstart { public static void main(String[] args) { try (var ctx = new AnnotationConfigApplicationContext()) { ctx.registerBean(JmsTemplate.class); ctx.refresh(); JmsTemplate jmsTemplate = ctx.getBean(JmsTemplate.class); jmsTemplate.convertAndSend("queue", "Hello JMS"); } } }
Debug
Known issues
breakingSpring JMS 7.0.7 requires Spring Framework 6.x and Java 17+; older projects may break.
fix
Ensure your project uses Spring Framework 6.x and Java 17 or later.
affects: >=7.0.0
Upgrade
Version history
7.0.7latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
20 hits · last 30 days
node
18
OpenAI (training)
1
Resources
spring-jms — mvn dependency:get spring-jms · libregistry