In this post, I am going to share how to show Hibernate SQL queries on the console log while running your Spring Boot project(s). Spring Boot Console Enable Hibernate SQL…
A one-to-many association between the entities in JPA can be achieved using either of the @ManyToOne or a @OneToMany annotations in Spring Boot. According to Vlad Mihalcea, @ManyToOne annotation allows you to map…
@RequestParam in Spring Boot: By default, parameters with @RequestParam annotation are required. If you fail to provide parameters to such annotated endpoints, your request will fail. In such cases, you…
static "static" means a member is available on the class itself instead of on instances of the class. That's all it means, and it isn't used for anything else. static modifies *members*. final "final" means single-assignment:…
IntelliJ IDEA is the best Java IDE available today. It has many features that the Java developers find very handy. But the Ultimate version is something, not every developer can…
To parse JSON in Dart or any language is simple. If you are a lazy programmer, you can generate codes for parsing JSON in any language using the following simple…
Data visualization with ECharts in an Angular project using ngx-echarts is pretty simple. In this post, I am going to share how to use ECharts in Angular projects. Create new…
Here 3 steps to use the default custom font in Flutter apps. 1. Import the font files Add your fonts to the assets folder. Flutter supports the following font formats:…
Sometimes, you will have to drop all tables in your Tablespace in the Oracle database. In such cases, here is an easy way to do it. Run the following command:…