Java Message Service.
The Java Message Service (JMS) API is a messaging standard that allows application components based on the Java 2 Platform, Enterprise Edition (J2EE) to create, send, receive, and read messages. It enables distributed communication that is loosely coupled, reliable, and asynchronous..
Here is the list of declaration for jms. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>javax.jms</groupId> <artifactId>jms</artifactId> <version>1.1</version> </dependency>
If you think this Maven repository POM file listing for jms is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following table lists the most popular artifacts which are depending on jms-1.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Spring | spring-context 2.5.2 Spring Framework: Context | 5 |
Log | log4j 1.2.15 Apache Log4j 1.2 | 310 |
Spring | spring-jms 2.5.5 Spring Framework: JMS | 5 |
Spring | spring-jms 2.5.6 Spring Framework: JMS | 5 |
Cache | oscache 2.4 OSCache is a caching solution that includes a JSP tag library and set of classes to perform fine grained dynamic caching of JSP content, servlet responses or arbitrary objects. | 13 |
Spring | spring-remoting 2.0.6 Spring Framework: Remoting | 6 |
Spring | spring-context 2.5.3 Spring Framework: Context | 5 |
Spring | spring-context 2.5.6 Spring Framework: Context | 42 |
Spring | spring-context 2.5 Spring Framework: Context | 20 |
Spring | spring-jms 2.0.8 Spring Framework: JMS | 5 |
Spring | spring 2.5.5 Spring Framework | 11 |
Spring | spring 2.5.2 Spring Framework | 8 |
Spring | spring 2.5.6.SEC03 Spring Framework | 12 |
Log | nlog4j 1.2.24 nlog4j - NLOG4J is a production-quality log4j-replacement with native SLF4J API support. See http://www.slf4j.org/nlog4j/ | 16 |
Log | nlog4j 1.2.25 nlog4j - NLOG4J is a production-quality log4j-replacement with native SLF4J API support. See http://www.slf4j.org/nlog4j/ | 12 |
Spring | spring 2.5.4 Spring Framework | 8 |
Spring | spring 2.5.6 Spring Framework | 51 |
Spring | spring 2.0 Spring Framework | 11 |
Spring | spring 1.2.9 Spring Framework | 27 |
Spring | spring-context 2.5.6.SEC01 Spring Framework: Context | 14 |
Spring | spring-context 2.5.5 Spring Framework: Context | 13 |
Spring | spring 2.5.6.SEC01 Spring Framework | 5 |
Spring | spring-context 2.5.4 Spring Framework: Context | 9 |
The following packages are defined in the jms-1.1.jar
javax.jms
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>javax.jms</groupId> <artifactId>jms</artifactId> <version>1.1</version> <name>Java Message Service</name> <description> The Java Message Service (JMS) API is a messaging standard that allows application components based on the Java 2 Platform, Enterprise Edition (J2EE) to create, send, receive, and read messages. It enables distributed communication that is loosely coupled, reliable, and asynchronous. </description> <url>http://java.sun.com/products/jms</url> <distributionManagement> <downloadUrl>http://java.sun.com/products/jms/docs.html</downloadUrl> </distributionManagement> </project>