Questions tagged [spring-io]

Spring IO brings together the core open source Spring APIs into a cohesive and versioned foundational platform for modern applications and is comprised of the Spring IO Foundation and Spring IO Execution layers.

The Spring IO Platform, which is intended to increase developer productivity, integrates devops capabilities and enables new classes of applications, such as big data systems. Key components of Spring IO include Foundation, which features APIs and embeddable runtime components for building enterprise applications, and Execution, offering domain-specific runtimes (DSRs) for applications built on the IO Foundation. DSRs can stand alone without requiring deployment to an external container.

Sources: http://www.infoworld.com/t/java-programming/java-ee-tough-sell-spring-framework-users-226761

57 questions
1
vote
0 answers

spring.io hibernate config

I'm using the Spring IO 1.0.1 BOM to manage my dependencies for my project. I've imported it in my super-pom's dependency management section like this -
0
votes
1 answer

Implementation/ Guide on how to Disable Spring Batch(5.0.2) MetaData Tables Completely

We need to disable Spring Batch(latest) metadata tables completely, not even use of In-memory database alternatives. Kindly Address below questions :- Question 1 : Is it possible to completely Stop Spring Batch Metadata generation/persistence. If so…
0
votes
0 answers

Maven issue for org.dom4j - Unauthorized error in spring.io repository

I have this dependency setting in my pom.xml org.dom4j dom4j 2.1.1 When I run the build command, I get this error: Failed to read artifact descriptor for…
0
votes
3 answers

How can I expand wildcards in Spring properties?

I am developing spring boot application and I want to inject Collections of resources like this: @Value("${app.users-location}") Collection csvResources; inside application.properties I wrote following: app.users-location=/feed/*.csv But…
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
0
votes
1 answer

How to verify a Spring feature/Bug fix is available in the Spring boot version which i am using?

I am working on a spring batch program to process data from sql and write to an xml. I used staxEventItemWriter to do that. But due to this issue https://jira.spring.io/browse/BATCH-1377 i am not able to fix the namespace issue. When we look at…
0
votes
1 answer

spring core version updation in spring boot parent starter 1.5.10.RELEASE

Here is the maven dependency I have org.springframework.boot spring-boot-starter-parent 1.5.10.RELEASE
Clover
  • 507
  • 7
  • 22
0
votes
2 answers

Not finding resources with Spring PathMatchingResourcePatternResolver

@Bean @StepScope public MultiResourceItemReader multiResourceItemReader() { MultiResourceItemReader resourceItemReader = new MultiResourceItemReader<>(); Resource[] resources = new Resource[0]; …
M06H
  • 1,675
  • 3
  • 36
  • 76
0
votes
1 answer

Spring IO Platform Cairo Release date with Springboot 2.0

When is the Spring IO Platform Release scheduled with the latest Springboot 2.0 and Webflux dependencies. We are using Spring IO Platform Brussels SR4 in dependency management right now, and want to move to Reactive Springboot and Webflux. I think…
piyugupt
  • 404
  • 2
  • 5
  • 14
0
votes
1 answer

spring dependency-management gradle plugin with artifactory

I'm trying to get a new project up and running using a private artifactory gradle repo. I was able to get it resolving artifacts through artifactory, but when I try to throw spring io & boot into the mix, the spring dependency management plugin…
unclebob
  • 109
  • 7
0
votes
1 answer

How to map array in the JSON body to a POJO?

I'm implementing many-to-many relationship using hibernate as JPA and spring-boot. When I do a post request from the POSTMAN, I get the following error: Failed to convert from type [java.net.URI] to type [com.domain.Datasource] There is a many to…
being_j
  • 136
  • 1
  • 11
0
votes
0 answers

spring-cloud-zookeeper-dependencies 1.0.4.BUILD-SNAPSHOT is missing

Since several days i got the maven error that the spring-cloud-zookeeper-dependencies/1.0.4.BUILD-SNAPSHOT is missing in https://repo.spring.io/snapshot Can anybody please check this? Many Thanks, Best regards
0
votes
1 answer

How i can take all managed version dependencies from Spring Dependencies Managment Plugin within my custom plugin?

I'm writing my custom java gradle plugin for checking dependencies. Also i apply Spring Gradle Dependency Managment plugin. But i cannot take a list of managed library version from this plugin. I use the next code: import…
0
votes
2 answers

The Spring boot application(eureka client) is throwing ClassNotFoundException: javax.ws.rs.core.Response$StatusType

I am trying register my Spring boot application to a eureka server. The application get's start but at runtime I am getting "java.lang.NoClassDefFoundError: javax/ws/rs/core/Response$StatusType at…
JDev
  • 1,662
  • 4
  • 25
  • 55
0
votes
2 answers

Spring Rest : Handling POST requests, at server end

I am asking this question based on the answers in this link POST request via RestTemplate in JSON I actually wanted to send JSON from client and receive the same at REST server. Since the client part is done in the link I mentioned above. For the…
Karthik
  • 101
  • 1
  • 13