-
I have several test classes that are annotated with @SpringBootTest and also AutoConfigureMockMvc.They look like this:@[email protected] ThymeleafFormatIT { @Autowired ......
-
When I run the test case then requests and responses of adoc type will be created and displayed in JSON format under the generated-snippets directory. when I run this mvn command mvn clean package to ......
-
I have a spring-mongo application with javers integrated which provides @JaversSpringDataAuditable annotation. Now the problem is for some of my repositories i do not want to save all data for audit ......
-
I have a Javers implementation in my Spring Boot application. Mongo 4.4 is used as a database.Starting with MongoDB 4.4, you can create documents in transactions.I have simulated an exception when ......
-
I'm trying to setup a small springboot application using ehcache with jgroups replication in kubernetes, but somehow not able to discover the other members to form a cluster. The bootstrap request to ......
-
I'm using spring-boot 2+ and created some custom annotation;@Target({ElementType.PARAMETER})@Retention(RetentionPolicy.RUNTIME)public @interface MyCustomAnnotation{}When doing:final ......
-
I'm using a custom class to generate id:public class StringPrefixedSequenceIdGenerator extends SequenceStyleGeneratorAlso using this class on entity attribute:@Id @GenericGenerator(name = "......
-
I've an existing code (sort of platform for entire application) which is in Hibernate4.x + Spring4.xI'm writing a new Spring Boot application which utilizes this Platform (as a maven dependency). The ......
-
I am upgrading to Hibernate 5 from 4. I am getting below error while application startup.org.hibernate.hql.internal.ast.QuerySyntaxException: unexpected token: FETCH near line 1The named queries ......
-
I have a custom Registration form developed on Spring MVC. I have a requirement to pass the form parameters to Keycloak and generate a cookie. How to call the Keycloak from my Spring Application?...
-
I am building notification system using spring boot and websocket, I used ActiveMQ to keep Queues for offlines users, it's working perfect.I need to edit some configuration like queue time to live, ......
-
ContextI have a Vaadin Flow Spring Boot project, using Vaadin 14 in compatibility mode, which is packaged as an executable .war file using Gradle (so with the Gradle war plugin). I have some static ......
-
I have a Spring Boot project with Vaadin integration (v14). I want my application to do some background operation and represent the results on the Vaadin-based frontend. For this I have a view which ......
-
in my vaadin application, I want to navigate the user from loginview page to to mainview page once the user is logged in. Login occurs correctly, and the redirection is done. However, what I observe ......
-
I have an Apache Camel REST APIs which i want to secure with OAuth 2.0. Is there a way to do this in Apache Camel ?Is there any implementation or Library provided to achieve OAuth with Apache Camel ......