组织ID: |
org.springframework |
项目ID: |
spring-websocket |
版本: |
5.1.15.RELEASE |
最后修改时间: |
2020-04-30 08:26:01 |
包类型: |
jar |
标题: |
Spring WebSocket |
描述: |
Spring WebSocket |
相关URL: |
https://github.com/spring-projects/spring-framework |
大小: |
408.62KB |
|
Maven引入代码: |
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-websocket</artifactId>
<version>5.1.15.RELEASE</version>
</dependency>
|
Gradle引入代码: |
org.springframework:spring-websocket:5.1.15.RELEASE
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework</groupId>
<artifactId>spring-websocket</artifactId>
<version>5.1.15.RELEASE</version>
<name>Spring WebSocket</name>
<description>Spring WebSocket</description>
<url>https://github.com/spring-projects/spring-framework</url>
<organization>
<name>Spring IO</name>
<url>https://projects.spring.io/spring-framework</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>jhoeller</id>
<name>Juergen Hoeller</name>
<email>jhoeller@pivotal.io</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/spring-projects/spring-framework</connection>
<developerConnection>scm:git:git://github.com/spring-projects/spring-framework</developerConnection>
<url>https://github.com/spring-projects/spring-framework</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/spring-projects/spring-framework/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.1.15.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.1.15.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.1.15.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-servlet</artifactId>
<version>2.0.30.Final</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>jboss-servlet-api_3.1_spec</artifactId>
<groupId>org.jboss.spec.javax.servlet</groupId>
</exclusion>
<exclusion>
<artifactId>jboss-annotations-api_1.2_spec</artifactId>
<groupId>org.jboss.spec.javax.annotation</groupId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-websockets-jsr</artifactId>
<version>2.0.30.Final</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>jboss-websocket-api_1.1_spec</artifactId>
<groupId>org.jboss.spec.javax.websocket</groupId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.1</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-websocket</artifactId>
<version>9.0.34</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>tomcat-servlet-api</artifactId>
<groupId>org.apache.tomcat</groupId>
</exclusion>
<exclusion>
<artifactId>tomcat-websocket-api</artifactId>
<groupId>org.apache.tomcat</groupId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-client</artifactId>
<version>9.4.28.v20200408</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
<version>9.4.28.v20200408</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>javax.servlet</artifactId>
<groupId>javax.servlet</groupId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
<version>9.4.28.v20200408</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>9.4.28.v20200408</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>javax.servlet</artifactId>
<groupId>javax.servlet</groupId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.glassfish.tyrus</groupId>
<artifactId>tyrus-container-servlet</artifactId>
<version>1.13.1</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-messaging</artifactId>
<version>5.1.15.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.1.15.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.springframework.web.socket.PingMessage.class
org.springframework.web.socket.config.HandlersBeanDefinitionParser.class
org.springframework.web.socket.config.annotation.AbstractWebSocketMessageBrokerConfigurer.class
org.springframework.web.socket.config.annotation.DelegatingWebSocketMessageBrokerConfiguration.class
org.springframework.web.socket.config.annotation.WebSocketConfigurationSupport.class
org.springframework.web.socket.config.annotation.AbstractWebSocketHandlerRegistration.class
org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer.class
org.springframework.web.socket.config.annotation.DelegatingWebSocketConfiguration.class
org.springframework.web.socket.config.annotation.StompEndpointRegistry.class
org.springframework.web.socket.config.annotation.StompWebSocketEndpointRegistration.class
org.springframework.web.socket.config.annotation.WebSocketHandlerRegistration.class
org.springframework.web.socket.config.annotation.WebSocketTransportRegistration.class
org.springframework.web.socket.config.annotation.ServletWebSocketHandlerRegistration.class
org.springframework.web.socket.config.annotation.EnableWebSocketMessageBroker.class
org.springframework.web.socket.config.annotation.WebSocketHandlerRegistry.class
org.springframework.web.socket.config.annotation.WebMvcStompEndpointRegistry.class
org.springframework.web.socket.config.annotation.SockJsServiceRegistration.class
org.springframework.web.socket.config.annotation.EnableWebSocket.class
org.springframework.web.socket.config.annotation.WebMvcStompWebSocketEndpointRegistration.class
org.springframework.web.socket.config.annotation.WebSocketConfigurer.class
org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurationSupport.class
org.springframework.web.socket.config.annotation.ServletWebSocketHandlerRegistry.class
org.springframework.web.socket.config.annotation.package-info.class
org.springframework.web.socket.config.HandlersBeanDefinitionParser$WebSocketHandlerMappingStrategy.class
org.springframework.web.socket.config.MessageBrokerBeanDefinitionParser.class
org.springframework.web.socket.config.WebSocketMessageBrokerStats.class
org.springframework.web.socket.config.HandlersBeanDefinitionParser$SockJsHandlerMappingStrategy.class
org.springframework.web.socket.config.WebSocketNamespaceUtils.class
org.springframework.web.socket.config.WebSocketNamespaceHandler.class
org.springframework.web.socket.config.MessageBrokerBeanDefinitionParser$DecoratingFactoryBean.class
org.springframework.web.socket.config.HandlersBeanDefinitionParser$HandlerMappingStrategy.class
org.springframework.web.socket.config.package-info.class
org.springframework.web.socket.WebSocketHttpHeaders.class
org.springframework.web.socket.AbstractWebSocketMessage.class
org.springframework.web.socket.client.jetty.JettyWebSocketClient.class
org.springframework.web.socket.client.jetty.package-info.class
org.springframework.web.socket.client.ConnectionManagerSupport.class
org.springframework.web.socket.client.WebSocketConnectionManager.class
org.springframework.web.socket.client.standard.AnnotatedEndpointConnectionManager.class
org.springframework.web.socket.client.standard.StandardWebSocketClient.class
org.springframework.web.socket.client.standard.StandardWebSocketClient$StandardWebSocketClientConfigurator.class
org.springframework.web.socket.client.standard.EndpointConnectionManager.class
org.springframework.web.socket.client.standard.WebSocketContainerFactoryBean.class
org.springframework.web.socket.client.standard.package-info.class
org.springframework.web.socket.client.AbstractWebSocketClient.class
org.springframework.web.socket.client.WebSocketClient.class
org.springframework.web.socket.client.WebSocketConnectionManager$1.class
org.springframework.web.socket.client.package-info.class
org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.class
org.springframework.web.socket.adapter.jetty.WebSocketToJettyExtensionConfigAdapter.class
org.springframework.web.socket.adapter.jetty.JettyWebSocketSession.class
org.springframework.web.socket.adapter.jetty.package-info.class
org.springframework.web.socket.adapter.standard.StandardToWebSocketExtensionAdapter.class
org.springframework.web.socket.adapter.standard.StandardWebSocketHandlerAdapter$3.class
org.springframework.web.socket.adapter.standard.StandardWebSocketHandlerAdapter$1.class
org.springframework.web.socket.adapter.standard.ConvertingEncoderDecoderSupport$TextDecoder.class
org.springframework.web.socket.adapter.standard.StandardWebSocketHandlerAdapter.class
org.springframework.web.socket.adapter.standard.StandardWebSocketHandlerAdapter$2.class
org.springframework.web.socket.adapter.standard.WebSocketToStandardExtensionAdapter.class
org.springframework.web.socket.adapter.standard.StandardWebSocketSession.class
org.springframework.web.socket.adapter.standard.StandardWebSocketHandlerAdapter$5.class
org.springframework.web.socket.adapter.standard.StandardWebSocketHandlerAdapter$4.class
org.springframework.web.socket.adapter.standard.WebSocketToStandardExtensionAdapter$1.class
org.springframework.web.socket.adapter.standard.ConvertingEncoderDecoderSupport$BinaryDecoder.class
org.springframework.web.socket.adapter.standard.ConvertingEncoderDecoderSupport$TextEncoder.class
org.springframework.web.socket.adapter.standard.ConvertingEncoderDecoderSupport.class
org.springframework.web.socket.adapter.standard.package-info.class
org.springframework.web.socket.adapter.standard.ConvertingEncoderDecoderSupport$BinaryEncoder.class
org.springframework.web.socket.adapter.AbstractWebSocketSession.class
org.springframework.web.socket.adapter.NativeWebSocketSession.class
org.springframework.web.socket.adapter.package-info.class
org.springframework.web.socket.SubProtocolCapable.class
org.springframework.web.socket.messaging.SessionConnectedEvent.class
org.springframework.web.socket.messaging.WebSocketStompClient.class
org.springframework.web.socket.messaging.DefaultSimpUserRegistry$LocalSimpUser.class
org.springframework.web.socket.messaging.SubProtocolWebSocketHandler$Stats.class
org.springframework.web.socket.messaging.WebSocketStompClient$StompWebSocketMessageCodec.class
org.springframework.web.socket.messaging.DefaultSimpUserRegistry.class
org.springframework.web.socket.messaging.SessionSubscribeEvent.class
org.springframework.web.socket.messaging.SessionUnsubscribeEvent.class
org.springframework.web.socket.messaging.StompSubProtocolHandler$1.class
org.springframework.web.socket.messaging.SubProtocolErrorHandler.class
org.springframework.web.socket.messaging.SessionConnectEvent.class
org.springframework.web.socket.messaging.StompSubProtocolHandler$Stats.class
org.springframework.web.socket.messaging.WebSocketAnnotationMethodMessageHandler$MessagingControllerAdviceBean.class
org.springframework.web.socket.messaging.WebSocketAnnotationMethodMessageHandler.class
org.springframework.web.socket.messaging.SubProtocolWebSocketHandler.class
org.springframework.web.socket.messaging.SubProtocolWebSocketHandler$1.class
org.springframework.web.socket.messaging.AbstractSubProtocolEvent.class
org.springframework.web.socket.messaging.SessionDisconnectEvent.class
org.springframework.web.socket.messaging.StompSubProtocolHandler.class
org.springframework.web.socket.messaging.SubProtocolHandler.class
org.springframework.web.socket.messaging.DefaultSimpUserRegistry$LocalSimpSession.class
org.springframework.web.socket.messaging.SubProtocolWebSocketHandler$WebSocketSessionHolder.class
org.springframework.web.socket.messaging.DefaultSimpUserRegistry$LocalSimpSubscription.class
org.springframework.web.socket.messaging.package-info.class
org.springframework.web.socket.messaging.StompSubProtocolErrorHandler.class
org.springframework.web.socket.messaging.WebSocketStompClient$WebSocketTcpConnectionHandlerAdapter.class
org.springframework.web.socket.WebSocketSession.class
org.springframework.web.socket.CloseStatus.class
org.springframework.web.socket.WebSocketExtension.class
org.springframework.web.socket.BinaryMessage.class
org.springframework.web.socket.WebSocketMessage.class
org.springframework.web.socket.PongMessage.class
org.springframework.web.socket.handler.SessionLimitExceededException.class
org.springframework.web.socket.handler.WebSocketHandlerDecorator.class
org.springframework.web.socket.handler.TextWebSocketHandler.class
org.springframework.web.socket.handler.WebSocketSessionDecorator.class
org.springframework.web.socket.handler.ConcurrentWebSocketSessionDecorator$1.class
org.springframework.web.socket.handler.AbstractWebSocketHandler.class
org.springframework.web.socket.handler.ConcurrentWebSocketSessionDecorator$OverflowStrategy.class
org.springframework.web.socket.handler.BeanCreatingHandlerProvider.class
org.springframework.web.socket.handler.PerConnectionWebSocketHandler.class
org.springframework.web.socket.handler.BinaryWebSocketHandler.class
org.springframework.web.socket.handler.ConcurrentWebSocketSessionDecorator.class
org.springframework.web.socket.handler.LoggingWebSocketHandlerDecorator.class
org.springframework.web.socket.handler.ExceptionWebSocketHandlerDecorator.class
org.springframework.web.socket.handler.package-info.class
org.springframework.web.socket.handler.WebSocketHandlerDecoratorFactory.class
org.springframework.web.socket.sockjs.support.AbstractSockJsService$InfoHandler.class
org.springframework.web.socket.sockjs.support.AbstractSockJsService$1.class
org.springframework.web.socket.sockjs.support.AbstractSockJsService$IframeHandler.class
org.springframework.web.socket.sockjs.support.AbstractSockJsService$SockJsRequestHandler.class
org.springframework.web.socket.sockjs.support.SockJsHttpRequestHandler.class
org.springframework.web.socket.sockjs.support.AbstractSockJsService.class
org.springframework.web.socket.sockjs.support.package-info.class
org.springframework.web.socket.sockjs.SockJsException.class
org.springframework.web.socket.sockjs.client.UndertowXhrTransport$3.class
org.springframework.web.socket.sockjs.client.AbstractClientSockJsSession$State.class
org.springframework.web.socket.sockjs.client.DefaultTransportRequest.class
org.springframework.web.socket.sockjs.client.XhrClientSockJsSession.class
org.springframework.web.socket.sockjs.client.SockJsClient$ServerInfo.class
org.springframework.web.socket.sockjs.client.WebSocketTransport.class
org.springframework.web.socket.sockjs.client.DefaultTransportRequest$ConnectCallback.class
org.springframework.web.socket.sockjs.client.InfoReceiver.class
org.springframework.web.socket.sockjs.client.WebSocketTransport$ClientSockJsWebSocketHandler.class
org.springframework.web.socket.sockjs.client.SockJsClient.class
org.springframework.web.socket.sockjs.client.SockJsUrlInfo.class
org.springframework.web.socket.sockjs.client.JettyXhrTransport$SockJsResponseListener.class
org.springframework.web.socket.sockjs.client.WebSocketClientSockJsSession.class
org.springframework.web.socket.sockjs.client.XhrTransport.class
org.springframework.web.socket.sockjs.client.AbstractXhrTransport.class
org.springframework.web.socket.sockjs.client.UndertowXhrTransport.class
org.springframework.web.socket.sockjs.client.UndertowXhrTransport$2$1.class
org.springframework.web.socket.sockjs.client.JettyXhrTransport.class
org.springframework.web.socket.sockjs.client.AbstractClientSockJsSession.class
org.springframework.web.socket.sockjs.client.UndertowXhrTransport$3$1.class
org.springframework.web.socket.sockjs.client.UndertowXhrTransport$3$1$1.class
org.springframework.web.socket.sockjs.client.UndertowXhrTransport$SockJsResponseListener.class
org.springframework.web.socket.sockjs.client.RestTemplateXhrTransport$XhrReceiveExtractor.class
org.springframework.web.socket.sockjs.client.RestTemplateXhrTransport$XhrRequestCallback.class
org.springframework.web.socket.sockjs.client.Transport.class
org.springframework.web.socket.sockjs.client.UndertowXhrTransport$2.class
org.springframework.web.socket.sockjs.client.TransportRequest.class
org.springframework.web.socket.sockjs.client.UndertowXhrTransport$1.class
org.springframework.web.socket.sockjs.client.WebSocketTransport$1.class
org.springframework.web.socket.sockjs.client.RestTemplateXhrTransport.class
org.springframework.web.socket.sockjs.client.AbstractClientSockJsSession$2.class
org.springframework.web.socket.sockjs.client.package-info.class
org.springframework.web.socket.sockjs.client.AbstractClientSockJsSession$1.class
org.springframework.web.socket.sockjs.transport.TransportHandler.class
org.springframework.web.socket.sockjs.transport.TransportHandlingSockJsService.class
org.springframework.web.socket.sockjs.transport.SockJsSession.class
org.springframework.web.socket.sockjs.transport.SockJsServiceConfig.class
org.springframework.web.socket.sockjs.transport.handler.WebSocketTransportHandler.class
org.springframework.web.socket.sockjs.transport.handler.EventSourceTransportHandler.class
org.springframework.web.socket.sockjs.transport.handler.AbstractHttpReceivingTransportHandler.class
org.springframework.web.socket.sockjs.transport.handler.XhrPollingTransportHandler.class
org.springframework.web.socket.sockjs.transport.handler.AbstractHttpSendingTransportHandler.class
org.springframework.web.socket.sockjs.transport.handler.SockJsWebSocketHandler.class
org.springframework.web.socket.sockjs.transport.handler.XhrStreamingTransportHandler$XhrStreamingSockJsSession.class
org.springframework.web.socket.sockjs.transport.handler.XhrStreamingTransportHandler.class
org.springframework.web.socket.sockjs.transport.handler.EventSourceTransportHandler$EventSourceStreamingSockJsSession.class
org.springframework.web.socket.sockjs.transport.handler.XhrReceivingTransportHandler.class
org.springframework.web.socket.sockjs.transport.handler.HtmlFileTransportHandler$1.class
org.springframework.web.socket.sockjs.transport.handler.HtmlFileTransportHandler.class
org.springframework.web.socket.sockjs.transport.handler.DefaultSockJsService.class
org.springframework.web.socket.sockjs.transport.handler.HtmlFileTransportHandler$HtmlFileStreamingSockJsSession.class
org.springframework.web.socket.sockjs.transport.handler.AbstractTransportHandler.class
org.springframework.web.socket.sockjs.transport.handler.package-info.class
org.springframework.web.socket.sockjs.transport.TransportType.class
org.springframework.web.socket.sockjs.transport.session.AbstractSockJsSession$1.class
org.springframework.web.socket.sockjs.transport.session.AbstractHttpSockJsSession.class
org.springframework.web.socket.sockjs.transport.session.AbstractSockJsSession$HeartbeatTask.class
org.springframework.web.socket.sockjs.transport.session.PollingSockJsSession.class
org.springframework.web.socket.sockjs.transport.session.AbstractSockJsSession.class
org.springframework.web.socket.sockjs.transport.session.StreamingSockJsSession.class
org.springframework.web.socket.sockjs.transport.session.AbstractSockJsSession$State.class
org.springframework.web.socket.sockjs.transport.session.WebSocketServerSockJsSession.class
org.springframework.web.socket.sockjs.transport.session.package-info.class
org.springframework.web.socket.sockjs.transport.SockJsSessionFactory.class
org.springframework.web.socket.sockjs.transport.package-info.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
spring-context-5.1.15.RELEASE.jar
/org.springframework/spring-context/5.1.15.RELEASE
查看spring-context所有版本文件
spring-core-5.1.15.RELEASE.jar
/org.springframework/spring-core/5.1.15.RELEASE
查看spring-core所有版本文件
spring-web-5.1.15.RELEASE.jar
/org.springframework/spring-web/5.1.15.RELEASE
查看spring-web所有版本文件
jackson-databind-2.9.9.jar
/com.fasterxml.jackson.core/jackson-databind/2.9.9
查看jackson-databind所有版本文件
undertow-servlet-2.0.30.Final.jar
/io.undertow/undertow-servlet/2.0.30.Final
查看undertow-servlet所有版本文件
undertow-websockets-jsr-2.0.30.Final.jar
/io.undertow/undertow-websockets-jsr/2.0.30.Final
查看undertow-websockets-jsr所有版本文件
javax.servlet-api-4.0.1.jar
/javax.servlet/javax.servlet-api/4.0.1
查看javax.servlet-api所有版本文件
javax.websocket-api-1.1.jar
/javax.websocket/javax.websocket-api/1.1
查看javax.websocket-api所有版本文件
tomcat-websocket-9.0.34.jar
/org.apache.tomcat/tomcat-websocket/9.0.34
查看tomcat-websocket所有版本文件
websocket-client-9.4.28.v20200408.jar
/org.eclipse.jetty.websocket/websocket-client/9.4.28.v20200408
查看websocket-client所有版本文件
websocket-server-9.4.28.v20200408.jar
/org.eclipse.jetty.websocket/websocket-server/9.4.28.v20200408
查看websocket-server所有版本文件
jetty-client-9.4.28.v20200408.jar
/org.eclipse.jetty/jetty-client/9.4.28.v20200408
查看jetty-client所有版本文件
jetty-webapp-9.4.28.v20200408.jar
/org.eclipse.jetty/jetty-webapp/9.4.28.v20200408
查看jetty-webapp所有版本文件
tyrus-container-servlet-1.13.1.jar
/org.glassfish.tyrus/tyrus-container-servlet/1.13.1
查看tyrus-container-servlet所有版本文件
spring-messaging-5.1.15.RELEASE.jar
/org.springframework/spring-messaging/5.1.15.RELEASE
查看spring-messaging所有版本文件
spring-webmvc-5.1.15.RELEASE.jar
/org.springframework/spring-webmvc/5.1.15.RELEASE
查看spring-webmvc所有版本文件
|