All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download spring-context-3.1.0 JAR files with dependency


org.apache.servicemix.bundles.spring-web from group org.apache.servicemix.bundles (version 4.1.1.RELEASE_3)

Group: org.apache.servicemix.bundles Artifact: org.apache.servicemix.bundles.spring-web
There is no JAR file uploaded. A download is not possible! Please choose another version.
1 downloads


spring-integration-jms from group org.springframework.integration (version 5.0.5.RELEASE)

Spring Integration JMS Support

Group: org.springframework.integration Artifact: spring-integration-jms
There is no JAR file uploaded. A download is not possible! Please choose another version.
1 downloads
Artifact spring-integration-jms
Group org.springframework.integration
Version 5.0.5.RELEASE


jpa-mapper-spring-boot-autoconfigure from group com.github.ffch (version 1.2.1)

Group: com.github.ffch Artifact: jpa-mapper-spring-boot-autoconfigure
There is no JAR file uploaded. A download is not possible! Please choose another version.
1 downloads


camel-example-spring-boot-rest-swagger from group org.apache.camel (version 2.19.5)

An example showing Camel REST DSL and Swagger with Spring Boot

Group: org.apache.camel Artifact: camel-example-spring-boot-rest-swagger
There is no JAR file uploaded. A download is not possible! Please choose another version.
1 downloads


org.apache.servicemix.bundles.spring-webmvc from group org.apache.servicemix.bundles (version 4.3.13.RELEASE_1)

Group: org.apache.servicemix.bundles Artifact: org.apache.servicemix.bundles.spring-webmvc

Download org.apache.servicemix.bundles.spring-webmvc.jar (4.3.13.RELEASE_1)
 

1 downloads


net.osgiliath.wrapper.spring-security-ldap from group net.osgiliath.wrappers (version 0.3.7)

Spring4 support for spring-security-ldap

Group: net.osgiliath.wrappers Artifact: net.osgiliath.wrapper.spring-security-ldap
Show source 
Download net.osgiliath.wrapper.spring-security-ldap.jar (0.3.7)
 

0 downloads


spring-cloud-starter-task-composedtaskrunner from group org.springframework.cloud.task.app (version 2.1.4.RELEASE)

Contains the app for the Composed Task Starter

Group: org.springframework.cloud.task.app Artifact: spring-cloud-starter-task-composedtaskrunner
Show documentation Show source 
Download spring-cloud-starter-task-composedtaskrunner.jar (2.1.4.RELEASE)
 

0 downloads


spring-boot-starter-ignite-client from group org.apache.ignite (version 3.0.0)

Group: org.apache.ignite Artifact: spring-boot-starter-ignite-client
Show source 
Download spring-boot-starter-ignite-client.jar (3.0.0)
 

0 downloads


pact-jvm-provider-junit5-spring from group au.com.dius (version 4.0.10)

# Pact Spring/JUnit5 Support This module extends the base [Pact JUnit5 module](../pact-jvm-provider-junit5). See that for more details. For writing Spring Pact verification tests with JUnit 5, there is an JUnit 5 Invocation Context Provider that you can use with the `@TestTemplate` annotation. This will generate a test for each interaction found for the pact files for the provider. To use it, add the `@Provider` and `@ExtendWith(SpringExtension.class)` and one of the pact source annotations to your test class (as per a JUnit 5 test), then add a method annotated with `@TestTemplate` and `@ExtendWith(PactVerificationSpringProvider.class)` that takes a `PactVerificationContext` parameter. You will need to call `verifyInteraction()` on the context parameter in your test template method. For example: ```java @ExtendWith(SpringExtension.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT) @Provider("Animal Profile Service") @PactBroker public class ContractVerificationTest { @TestTemplate @ExtendWith(PactVerificationSpringProvider.class) void pactVerificationTestTemplate(PactVerificationContext context) { context.verifyInteraction(); } } ``` You will now be able to setup all the required properties using the Spring context, e.g. creating an application YAML file in the test resources: ```yaml pactbroker: host: your.broker.host auth: username: broker-user password: broker.password ``` You can also run pact tests against `MockMvc` without need to spin up the whole application context which takes time and often requires more additional setup (e.g. database). In order to run lightweight tests just use `@WebMvcTest` from Spring and `MockMvcTestTarget` as a test target before each test. For example: ```java @WebMvcTest @Provider("myAwesomeService") @PactBroker class ContractVerificationTest { @Autowired private MockMvc mockMvc; @TestTemplate @ExtendWith(PactVerificationInvocationContextProvider.class) void pactVerificationTestTemplate(PactVerificationContext context) { context.verifyInteraction(); } @BeforeEach void before(PactVerificationContext context) { context.setTarget(new MockMvcTestTarget(mockMvc)); } } ``` You can also use `MockMvcTestTarget` for tests without spring context by providing the controllers manually. For example: ```java @Provider("myAwesomeService") @PactFolder("pacts") class MockMvcTestTargetStandaloneMockMvcTestJava { @TestTemplate @ExtendWith(PactVerificationInvocationContextProvider.class) void pactVerificationTestTemplate(PactVerificationContext context) { context.verifyInteraction(); } @BeforeEach void before(PactVerificationContext context) { MockMvcTestTarget testTarget = new MockMvcTestTarget(); testTarget.setControllers(new DataResource()); context.setTarget(testTarget); } @RestController static class DataResource { @GetMapping("/data") @ResponseStatus(HttpStatus.NO_CONTENT) void getData(@RequestParam("ticketId") String ticketId) { } } } ``` **Important:** Since `@WebMvcTest` starts only Spring MVC components you can't use `PactVerificationSpringProvider` and need to fallback to `PactVerificationInvocationContextProvider`

Group: au.com.dius Artifact: pact-jvm-provider-junit5-spring
Show documentation Show source 
Download pact-jvm-provider-junit5-spring.jar (4.0.10)
 

0 downloads
Artifact pact-jvm-provider-junit5-spring
Group au.com.dius
Version 4.0.10


spring-data-envers from group org.springframework.data (version 1.0.2.RELEASE)

Spring Data extension to work with Hibernate Envers

Group: org.springframework.data Artifact: spring-data-envers
Show documentation Show source 
Download spring-data-envers.jar (1.0.2.RELEASE)
 

0 downloads
Artifact spring-data-envers
Group org.springframework.data
Version 1.0.2.RELEASE


spring-cloud-dataflow-server-yarn-h2 from group org.springframework.cloud (version 1.0.0.RELEASE)

Data Flow H2 DB Server

Group: org.springframework.cloud Artifact: spring-cloud-dataflow-server-yarn-h2
Show documentation Show source 
Download spring-cloud-dataflow-server-yarn-h2.jar (1.0.0.RELEASE)
 

0 downloads


org.beamfoundry.bundles.spring-data-jpa.test-eclipselink24-adapter from group org.beamfoundry.bundles.spring-data-jpa.test (version 1.6.4.RELEASE_2)

Group: org.beamfoundry.bundles.spring-data-jpa.test Artifact: org.beamfoundry.bundles.spring-data-jpa.test-eclipselink24-adapter
Show documentation Show source 
Download org.beamfoundry.bundles.spring-data-jpa.test-eclipselink24-adapter.jar (1.6.4.RELEASE_2)
 

0 downloads


spring-cloud-launcher-cli from group org.springframework.cloud.launcher (version 3.1.1)

Spring Cloud Launcher CLI

Group: org.springframework.cloud.launcher Artifact: spring-cloud-launcher-cli
Show documentation Show source 
Download spring-cloud-launcher-cli.jar (3.1.1)
 

0 downloads


spring-statemachine-samples-showcase from group org.springframework.statemachine (version 4.0.0)

Spring State Machine Showcase Sample

Group: org.springframework.statemachine Artifact: spring-statemachine-samples-showcase
Show documentation 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads


otj-spring-archetypes from group com.opentable (version 0.0.9)

Group: com.opentable Artifact: otj-spring-archetypes
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact otj-spring-archetypes
Group com.opentable
Version 0.0.9




Page 578 from 19481 (items total 292206)


© 2015 - 2025 Weber Informatics LLC | Privacy Policy