Registry / web-framework / spring-ws-core

spring-ws-core

JSON →
library5.0.1javamavenunverified

Spring WS Core provides the central classes for building SOAP web services with Spring, including message dispatching and endpoint mapping.

<dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-ws-core</artifactId> <version>5.0.1</version> </dependency>
INSTALL
IMPORT
SIG · SPRING-WS-CORE
S
spring-ws-core
web-frameworkjavav5.0.1
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.

Endpoint
org.springframework.ws.server.endpoint.annotation.Endpoint

Minimal Spring WS endpoint handling a SOAP request.

import org.springframework.ws.server.endpoint.annotation.Endpoint; import org.springframework.ws.server.endpoint.annotation.PayloadRoot; import org.springframework.ws.server.endpoint.annotation.RequestPayload; import org.springframework.ws.server.endpoint.annotation.ResponsePayload; @Endpoint public class HelloEndpoint { private static final String NAMESPACE_URI = "http://example.com/hello"; @PayloadRoot(namespace = NAMESPACE_URI, localPart = "HelloRequest") @ResponsePayload public HelloResponse handleHello(@RequestPayload HelloRequest request) { HelloResponse response = new HelloResponse(); response.setMessage("Hello " + request.getName()); return response; } }
Debug
Known issues
breakingSpring WS 5.x requires Spring Framework 6.x and Java 17+; older versions are incompatible.
fix
Ensure your project uses Spring Framework 6.x and Java 17 or later.
affects: >=5.0.0
Upgrade
Version history
5.0.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources
spring-ws-core — mvn dependency:get spring-ws-core · libregistry