Questions tagged [spring-boot-starter-parent]

16 questions
3
votes
2 answers

Missing "toInt()" from string after upgrading Kotlin

Any suggestion on how to troubleshoot this?
Stianhn
  • 275
  • 2
  • 14
1
vote
1 answer

What is the alternate to org.springframework.web.multipart.MultipartResolver;

I am upgrading spring-boot-starter-parent from version 2.5.3 to 3.0.0 I was using the org.springframework.web.multipart.commons.CommonsMultipartResolver; (extending it) for my file upload needs setting sizes of max uploads. Getting file…
feltspar
  • 303
  • 1
  • 3
  • 15
1
vote
1 answer

Unable to connect to Sql Server Db with Spring Boot Starter Partent 2.7.*

I have a small spring boot application that has to connect to a Sql Server DB. When I run the application with spring-boot-starter-parent version 2.6.* everything works. But when I switch to version 2.7.* I get this…
S-Wing
  • 485
  • 6
  • 25
1
vote
0 answers

java.lang.ClassNotFoundException: org.springframework.kafka.listener.RecordInterceptor

I have my spring boot kafka application with maven and I have updated the older versions with the latestone for spring-boot-starter-parent and spring-kafka as below. spring-boot-starter-parent from 2.1.7.RELEASE --to-->…
1
vote
0 answers

updating spring-boot-starter-data-mongodb to a newer version

I'm working on an old version spring-boot-starter project. I need to update the mongo driver to at least 3.11 (since moving to a new mongo host with a newer version). Because updating the whole project to a newer version of spring-boot-starter is…
1
vote
1 answer

Why am I obtaining this error building a Spring Boot project after updating the spring-boot-starter-parent parent project to the last 2.2.5.RELEASE?

I am pretty new in Spring Boot and I am experiencing some problem trying to update the spring-boot-starter-parent parent project. So, at the beginning I have this pom.xml file (it works fine, I can build the project and I have no problem):
AndreaNobili
  • 40,955
  • 107
  • 324
  • 596
1
vote
1 answer

Spring boot SSO with Oauth2 and Spring-boot-starter-parent version 2+

I got a good and simple SSO sample project from here Currently the sample works as below. Start app1, app2, sso-server. Load http://localhost:8082/app1 It will redirect to login page of http://localhost:8080/sso-server username: user, password:…
0
votes
3 answers

Spring Boot app can't connect to Cassandra cluster, driver returning "AllNodesFailedException: Could not reach any contact point"

i've updated my spring-boot to v3.0.0 and spring-data-cassandra to v4.0.0 which resulted in unable to connect to cassandra cluster which is deployed in stg env and runs on IPv6 address having different datacenter rather DC1 i've added a config file…
0
votes
1 answer

H2 Database Exception: Table "CONSTANTS" not found

I upgraded spring-boot-starter-parent to 2.7.5 (from 2.6.8), and now I got the following exception in unit tests which I don't have such table (CONSTANTS) org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "CONSTANTS" not found The full stacktrace is…
kamal
  • 1,093
  • 6
  • 19
  • 34
0
votes
2 answers

How to use dependencies from spring-boot-starter-parent?

I have a Spring Boot application using spring-boot-starter-parent 2.5.4: org.springframework.boot spring-boot-starter-parent
du-it
  • 2,561
  • 8
  • 42
  • 80
0
votes
3 answers

How to overwrite version of spring boot BOM

I have a problem with updating Log4j versions. In my pom.xml file I updated the version like this: // other stuff // 2.16.0 But in…
Kerk
  • 283
  • 1
  • 4
  • 24
0
votes
1 answer

Spring boot starter dependency overwrites netty version of the qpid-jms-client

I'm using the QPID-JMS-ClIENT (version 0.59.0) in a spring boot project. I would like to overwrite the netty-version since this version of QPID comes with the netty-version: 4.1.63.Final [1]. I would like to overwrite the netty version to the…
monti
  • 455
  • 7
  • 25
0
votes
0 answers

Can't reach maven profile property 'spring.profiles.active' from application.properties file after upgrade spring-boot-starter-parent

I upgraded spring-boot-starter-parent from 2.3.1 till 2.5.5 and now 'spring.profiles.active' property can't be injected from pom to application.properties file. Instead of profile value I get in console "The following profiles are active…
0
votes
1 answer

Maven Spring boot and Spring Cloud pom dependency not found

I find this difficult to identify all of sudden CI/CD pipeline broken due to the fact that Spring boot pom is not available anymore at the location. When I ran the command mvn clean install, I see below two pom are misplaced/not available anymore,…
Adeel Ahmad
  • 185
  • 1
  • 17
0
votes
1 answer

Spring boot server using jetty is not forwarding to index.html by default when running in eclipse since spring-boot-starter-parent 2.1.12-RELEASE

UPDATE: This problem exists in jetty from 9.4.25.v20191220, i have set the version back to 9.4.24 it correctly serves. Whether this is a bug or change of configuration I don't know. Maybe someone can help, i appreciate this is all configuration…
1
2