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
2
votes
2 answers

how can we build a spring mvc multitenant application using hibernate as orm separate database and schema

from spring io u shifted to stack overflow but nowhere u have explained about multitenant complete demo application which can be seen as a problem solver infact no one seen satisfied with ur answers can u please now share a working demo of…
kartik
  • 23
  • 5
2
votes
1 answer

Error handling in spring integration - How to get all the errors thrown in multiple threads and send them to the error-channel

I have two threads and each of the method in the thread throws an exception. How do I get all the errors that's thrown in each of the thread? In this code, the error channel just catch one of the errors. Basically my goal is to catch all the errors…
2
votes
1 answer

Spring IO platform-bom version scheme

Can someone please explain or indicate some reference on the spring.io platform-bom versioning scheme? I see concurrent releases of versions: Brussels-SR1 Athens-SR3 2.0.8.RELEASE Which should I choose?
yannisf
  • 6,016
  • 9
  • 39
  • 61
2
votes
1 answer

Spring Boot Starter Integration and Starter WS not playing well together?

I'm working on a spike to try to exercise a number of technologies with spring boot (1.1.6.RELEASE), gradle (2.1) and Java 1.8. So we are looking at supporting some old style SOAP Web Service calls as well as Spring Integration. So to get off the…
Tristan
  • 279
  • 5
  • 21
2
votes
2 answers

Issue with imported scope poms (spring bom io dependency issue)

My company policy restricts us from downloading thirdparty artifacts from public repositories (maven_central, spring-io etc) We use Nexus as a repository manager which hosts all the artifacts that are approved by our company policy. We are trying to…
Hrushi
  • 153
  • 3
  • 13
2
votes
0 answers

spring io platform using versionManagement gradle maven publish fails

Using the Spring io platform with Gradle, publish tasks fail with validation errors on generated pom. It seems the Gradle publish tasks both uploadArchives and Maven publishing expect version numbers to be in the generated pom. When using the Spring…
1
vote
1 answer

@Scheduled of SpringIO not working in scala?

I followed the example: https://spring.io/guides/gs/scheduling-tasks/. it works. Then, I changed it to scala codes. My scala codes: @Component class ScheduledConsumer { private val log = LoggerFactory.getLogger(classOf[ScheduledConsumer]) …
BAE
  • 8,550
  • 22
  • 88
  • 171
1
vote
1 answer

Spring Initializr Error:Failed to delete temp directory

When I was trying to build it from source for running my own Spring Initialzr instance, the problem occurred with temporary files when performing the tests. Windows10 java8 mvnw clean install or cd initializr-generator | mvn clean…
dawn1ng
  • 11
  • 4
1
vote
1 answer

404 at GGTS download page

Looking to download GGTS (Groovy/Grails tools suite) IDE but I'm getting 404 page. https://spring.io/tools/ggts/all/ https://spring.io/tools/ggts Does someone know another place to download GGTS suite
leosouzabh
  • 63
  • 1
  • 6
1
vote
1 answer

validate raw message against schema for method annotated with jmslistener

I have a need to apply some pre-checks and common steps on the all the jms listeners like validating the raw message against a schema (JSON schema). Example - @Component public class MyService { @JmsListener(destination = "myDestination") …
Arpit
  • 92
  • 3
  • 15
1
vote
2 answers

Combination of scope-proxy and parent

Hi I have the following short code : https://github.com/shmuel-buchnik/scope-issue I am getting the following error : "Invalid property 'targetBeanName' of bean class [C]: Bean property 'targetBeanName' is not writable or has an invalid setter…
1
vote
0 answers

Spring IO file based pagination

I have a large file around 20MB and I am using spring Boot for my REST API now task is client will send the fileName and I need to write controller method which will provide the number of pages in that file. There is also a records per page…
1
vote
0 answers

hdp:tool-tasklet does not propagate properties

I am using the hdp:tool-tasklet to execute a data transformation job on hadoop. Reading from the documentation, it seems one can specify a property to be available when the actual implementation is invoked - at least for the…
mihai
  • 53
  • 2
  • 9
1
vote
1 answer

Why Async requests are destroyed when main thread end? Spring Tasks

I wanted to write async method. @Component public class TaskImpl implements Task{ @Async(value="myExecutor") public void async(int n) throws InterruptedException{ log.info("Executing task"+n); Thread.sleep(1000); …
grep
  • 5,465
  • 12
  • 60
  • 112
1
vote
1 answer

Spring IO Platform Bill-Of-Materials custom version

In order to simplify dependencies and the pom.xml file, I updated a Spring MVC app to use Spring IO platform Bill-Of-Materials. However I have two problems: Overriding a specific version of a depdencency defined in the BOM: Spring IO platform sets…
Ümit
  • 17,379
  • 7
  • 55
  • 74