For questions relating to the Spring Boot Starter POMs.
Questions tagged [spring-boot-starter]
221 questions
0
votes
2 answers
spring-data-cassandra-2.0.0.RELEASE + spring-boot-starter-web-1.5.7.RELEASE causes java.lang.ClassNotFoundException
I use latest available version of spring-data-cassandra which is 2.0.0.RELEASE and latest version of spring-boot-starter-web - 1.5.7.RELEASE
org.springframework.data
…

Gleb
- 11
- 4
0
votes
1 answer
Incompatible Spring dependencies (NoSuchMethodError when AnnotationRepositoryConfigurationSource constructor is called)
I can't start my Spring Boot application anymore after adding persistence. The error is:
java.lang.NoSuchMethodError:…

JustCode
- 89
- 2
- 6
0
votes
2 answers
Why am i able to authenticate with the password hash in Java Spring Security
I am using spring-boot-starter-security. I configured my WebSecurityConfigation to use DaoAuthenticationProvider provider and BCryptPasswordEncoder for authentication. Also the UserDetailsService implementation returns a User object with the…

Tom
- 2,481
- 1
- 15
- 16
0
votes
1 answer
how to Set background color for data table matched content
How to Set a background color for data table matched content like progress, Delete, Active, Pending,...
There is no class and id for the matched content.
Example:
progress--> bg color:green
Delete--> bg…

VinodReddy
- 23
- 9
0
votes
2 answers
How to use WebMvcConfigurationSupport from own auto-configuration
I'd like to add Converters via FormattingConversionService, which requires having a @Configuration class extending WebMvcConfigurationSupport:
@Configuration
public class WebAutoConfig extends WebMvcConfigurationSupport {
@Override
public…

laur
- 498
- 9
- 17
-1
votes
1 answer
Validate Additional parameters in Requestbody for Springboot request and throw 400
@Data
public class Employee{
@NotNull
@NotBlank
private string id;
@NotNull
@NotBlank
private string name;
}
@RestController
@Validated
class EmployeeController{
@postMapping(consumes="json", produces="json")
public ResponseEntity…

Kannan TK
- 19
- 1
- 5
-1
votes
2 answers
com.github.ulisesbocchio:jasypt-spring-boot-starter version question
I am using spring version: 4.2.5 release and spring boot version 1.5.3 release.
Please let me know what is the right version of com.github.ulisesbocchio:jasypt-spring-boot-starter I should use. Thanks.

spring notes
- 31
- 1
- 5
-2
votes
1 answer
Can't convert anotation into import
I've been tring to configure my pom file to start a springboot project with maven. I configured it like this but I can't convert an annotation into an import in my class. The spring starter on my pom file show in red too. I'm using…

Murillo Jorge
- 25
- 1
-2
votes
2 answers
I can't create my custom spring-boot starter
I try to create spring-boot-starter. I create a simple spring-boot module with this Gradle file:
plugins {
id 'org.springframework.boot' version '2.1.3.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group =…

ip696
- 6,574
- 12
- 65
- 128
-3
votes
1 answer
why javax is not runnig in this project while is runnig in others
Jakrta is runnig in this project but when i turned in javax it dont work. By working with jakarta the creation of D.B didn't work.

Momtez Allouch
- 1
- 3