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
101
votes
5 answers

maven dependency without version

Recently I've been working on some improvements in a project developed some time ago, and here's what I found. A lot of dependencies in the pom files go without versions specified, and yet they are resolved. The project consists of 1 root module and…
yuranos
  • 8,799
  • 9
  • 56
  • 65
28
votes
4 answers

What is the relationship between Spring Boot and Spring IO?

Spring has a new project called spring IO http://platform.spring.io/platform/ and it is not really clear what is the difference between that project and Spring Boot. I am already a spring boot user but can't tell if I should be using SpringIO or…
ams
  • 60,316
  • 68
  • 200
  • 288
9
votes
2 answers

Cannot access repo.spring.io - Getting unauthorized

I'm working on a gradle based spring boot project which downloads some dependencies from 'repo.spring.io'. The application used to work fine a while back but now I'm seeing an error in the download dependencies stage. When the application goes on to…
Nachiket Juneja
  • 91
  • 1
  • 1
  • 2
9
votes
2 answers

Does Reactive programming consumes more resources than non-reactive?

We are currently facing a performance issue with spring webFlux. For the sake of ascertaining the benefits of the reactive programming we have implemented a Spring Boot service which fetches data from a MongoDB and returns it via a REST API to the…
Ghislain
  • 91
  • 1
  • 3
8
votes
2 answers

Inject files as list of resources using wildcard by annotations in Spring

I have a class which I use as a spring bean. The bean is defined in the applicationContext.xml like: And MyClass looks…
8
votes
5 answers

Cannot access repo.spring.io for Spring-boot exercises

I'm looking at spring-boot at the moment, but cannot access the repo.spring.io maven repository in builds. I've created the initial Gradle build file , but receive a 401 (Unauthorised) response when I try to run the build for the first time. I've…
GKelly
  • 3,835
  • 4
  • 38
  • 45
7
votes
1 answer

What does the name Spring IO mean?

In fall 2013 Spring has launched its new Website (spring.io) and announced its new platform "Spring IO". But what does this name/abbreviation "IO" mean? I am NOT asking for any (technical) description of what Spring IO is, I am only interested in…
Ralph
  • 118,862
  • 56
  • 287
  • 383
5
votes
1 answer

Spring IO platform release management

Since Spring IO platform was intruduced we manage our project dependencies using the Spring IO platform-bom. Thus we do not specify dedicated versions for single Spring components (or even the platform libraries) anymore (and we are cautious when it…
FrVaBe
  • 47,963
  • 16
  • 124
  • 157
5
votes
2 answers

how to shutdown ThreadPoolTaskExecutor? Good way

I have ThreadPoolTaskExecutor. I should send too many emails (different emails). If I have error during email sending, I should write it in database.
grep
  • 5,465
  • 12
  • 60
  • 112
5
votes
1 answer

Using an annotated class in BeanIO instead of an XML for mapping

I'm following this simple tutorial http://beanio.org/ Toward the end says you can use an annotated class instead of an XML file. I did that and in my factory.load() I pass the value with the name of my annotated class. and I get am…
user29768
  • 317
  • 4
  • 10
4
votes
1 answer

Issue while using Spring IO Platform

I have created a Spring MVC Project with Maven. I am new to Spring framework. With reference to the following tutorial, I am trying to analyze the Spring Data JPA repositories. I have enabled the Spring IO platform in my pom.xml with the following…
Vinod
  • 2,263
  • 9
  • 55
  • 104
3
votes
0 answers

Using spring-boot Gradle plugin but getting spring boot version from dependency management

I have a Gradle setup where I currently need to hard code the spring-boot version. Is it possible to do this with dependency management instead? The issue occurs in my project module that contains the actual code. There I need a call to : springBoot…
Andreas Lundgren
  • 12,043
  • 3
  • 22
  • 44
3
votes
1 answer

How do I use Spring IO Platform BOM and Spring Boot with Gradle?

So this build.gradle seems to work ok buildscript { repositories { mavenLocal() jcenter() mavenCentral() } dependencies { classpath('org.springframework.boot:spring-boot-gradle-plugin:1.2.6.RELEASE') …
xenoterracide
  • 16,274
  • 24
  • 118
  • 243
3
votes
1 answer

Spring Boot uses Spring IO implicitly?

I want to get all benefits of Spring IO and Spring Boot. I understood that Spring IO is something larger than Spring Boot. I understood that the main Spring IO concern is about integration, solve conflicts between a lot of frameworks and components…
2
votes
1 answer

Spring Embedded Kafka using Kafka 2.2.x

The Embedded Kafka Broker for Spring does not work when upgrading Spring-Kafka 2.2.x which is required for kafka-client and kafka-stream 2.2.3. It seems to require a meta.properties file in the log.dir directory, and requires setting a broker.id.…
1
2 3 4