Questions tagged [spring-boot-starter]

For questions relating to the Spring Boot Starter POMs.

221 questions
0
votes
4 answers

Why there is not Spring Boot starter for Spring Webflow

Trying to understand why there is no Spring Boot starter for Spring Webflow. The technology don't looks like deprecated one or I'm wrong here?
0
votes
1 answer

Can a child pom inherit plugin management and dependency management from the spring-boot-starter-parent of a custom parent pom?

Suppose, I have a custom parent pom with spring-boot-starter-parent as its parent. Will a child pom of this custom parent be able to inherit plugin management and dependency management from the spring-boot-starter-parent? From what I could find out:…
Vemai Clan
  • 33
  • 4
0
votes
0 answers

Spring Boot Application faill launch for missing starters, that are not wanted

I want to make a simple Spring application. Wath i need is an application that makes just some query on my database. Right now i have just started to use Spring Boot and wanted to use that to learn purpose. I Just know how Spring Boot works in…
Fabio Piunti
  • 1,054
  • 2
  • 9
  • 24
0
votes
1 answer

Custom Spring boot starter do not apply property

Create custom Spring boot starter my-spring-boot-starter from spring-boot-starter-parent. In source folder of my Starter add applicatin.property file that contains property to config logging: logging.pattern.console= Then…
Alstresh
  • 583
  • 2
  • 4
  • 16
0
votes
1 answer

Are there naming recommendations for spring boot starters with more complex names?

The Spring Boot documentation says how to name a Spring Boot starter for something with a simple name such as acme: acme-spring-boot-starter However, the autoconfigured "thing" has not always such a simple name. How about a name with multiple parts?…
burki
  • 6,741
  • 1
  • 15
  • 31
0
votes
2 answers

Is it possible for one app to check health of the other using any features of Spring framework?

I have two instances of an app running. Is it possible for one app to check health of the other using any features of Spring framework ?
0
votes
1 answer

Do Spring Boot starter packages impact performance?

Can gradle starter packages for spring boot, such as org.springframework.boot:spring-boot-starter-web org.springframework.boot:spring-boot-starter-cache introduce any significant latency (>2ms api response time) as opposed to non-starter,…
user197452
  • 25
  • 4
0
votes
1 answer

Create DATETIME in MariaDB using LocalDateTime column type in JPA

I need create DATETIME column in MariaDB using LocalDateTime column type in JPA. I created this entity: @Column private LocalDateTime created_at; but when I depot the code the column in MariDB is updated to DATE. I need DATETIME. I also tried…
Peter Penzov
  • 1,126
  • 134
  • 430
  • 808
0
votes
1 answer

Springboot AutoConfiguratoin not working in Kafka Logback Appender

I have a kafka logback appender, which contains a base logback.xml to push the log events to kafka. I created this kafka logback appender as a spring boot starter application so that i can add this jar to any client application and push the log…
bigskull
  • 739
  • 2
  • 13
  • 23
0
votes
1 answer

Error creating bean with name 'jpaMappingContext'

I tried to build a spring starter project,I checked web,jdbc,jpa and thymeleaf but I get the this erreur: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jpaMappingContext': Invocation of init method failed;…
imaneBlh
  • 29
  • 1
  • 3
  • 10
0
votes
0 answers

Adding a new version of spring-boot-starter-parent creates an issue with jetty server configuration

After moving from org.springframework.boot spring-boot-starter-parent 1.4.2.RELEASE to
0
votes
1 answer

Return entity list when sending list as url parameter

Will be happy if somebody pays attention and helps me to solve this issue. Rest server: @RestController @RequestMapping("/") public class RestServer { @RequestMapping(value = "/foo/{bar}", method=RequestMethod.GET) @ResponseBody public…
0
votes
1 answer

Do I need webstarter in order to use just RestController annotation?

I have seen an Spring Boot web starter example on the web that includes the starter just to employ Restcontroller annotation, but I am doing the small poc and I can see that I do not need it...I am missing something or adding the starter was indeed …
user1065569
0
votes
1 answer

With spring-boot-starter-parent v2.0.x app does not start, while it works fine with 1.5.14

With v1.5.14 of the spring-boot-starter-parent the app starts just fine, just changing it to v2.0.x breaks it. I get the below error: `[main] ERROR org.springframework.boot.SpringApplication - Application run failed java.lang.NoSuchMethodError:…
Vinod
  • 81
  • 9
0
votes
1 answer

Togglz don't pick up Spring-Boot configuration from application.yml

I tried to follow the Togglz guide for Spring Boot, so added all necessary dependencies, created a feature enum: public enum RetrospectiveBoardFeatures implements Feature { @Label("Name by cookie") NAME_BY_COOKIE, @Label("Name by…
MarZa
  • 3
  • 2