Skip to content

Tag: spring-boot

Spring Boot OAuth2.0 with Azure Authentication Error – Missing required “user name” attribute name in UserInfoEndpoint for Client Registration: azure

I am trying to login using correct credentials and I am getting following error. I have created Azure AD B2C application following spring starters described on Azure website. User created in Azure Active Directory is member of two groups test2 and test3. I have another spring application, authentication and a…

How to trigger dynamic scheduling jobs in Java and cancel them?

How can I invoke a job dynamatically and cancel them at ease? Can I trigger a delayed task that runs at a specific moment, and cancel them if the moment has not passed by, just behaving like the alarm clock? Answer I have found another enterprise job-scheduling framework for this task, which is called PowerJo…

Querying using class in Spring

i’m trying to do this query List<Product> findProductByCategory_CategoryNameAndPriceBetween(String category, double min, double max); but the return of the query is an empty list. What am I doing wrong? I also tried without the underscore between Category and Category Name. This are the class cate…