JavaPythonTech blog contains various tools and skills for a developer. Java/Python Best Practices, Tools, Examples, Programming interview questions.

Convert json to avro record Object in java

Introduction:Avro is a popular data serialization system that offers efficient data exchange and storage capabilities. When working with Avro, you may encounter scenarios where you need to convert JSON data into Avro record objects. In this blog post, we will explore the process of converting JSON to Avro record objects, enabling you to seamlessly...
Share:

How to make files generated from avro schema file to have String fields instead of Charset fields

Introduction:Avro is a widely used data serialization system that allows for efficient data exchange between systems and programming languages. When working with Avro, you might encounter scenarios where you need to convert specific fields to string format in the files generated from Avro schemas. In this blog post, we will explore the process of...
Share:

How to switch branch in IntelliJ Idea

Introduction:IntelliJ IDEA is a powerful integrated development environment (IDE) widely used by developers to write code and manage version control systems. One of the fundamental tasks in software development is switching branches, allowing developers to work on different...
Share:

Spring Boot liquibase : How to exclude SQL statement execution in a particular environment/spring profile

Introduction:When you are using liquibase with Spring boot for database migration, you might often end up in a situation where you want to execute SQL statements only in particular environment for various reasons like local/dev data setup, Integration tests etc. You would not want these test data setup statements executed in the actual environment...
Share:

Generate Oracle insert statements for excel data using java

Many times, it will be easier to generate insert statements using a program rather than creating it manually which will be time consuming especially if you have to create hundreds/thousands of them. There are many ways to achieve the goal, the easiest being using formulas...
Share:

Top 6 Eclipse plugins in 2023

1. Docker editor         Nowadays docker is used in most the top tech companies and this plugin helps you edit docker files in eclipse. 2. EclEmma Java Code Coverage         EclEmma is a free Java code coverage...
Share:

How to switch branch in eclipse without losing workspace settings

You have checked out the required branch from git and would like to switch to a different branch using eclipse. developer branch in the below example:   Now let’s make some changes to the existing file and add a file to depict workspace changes. ...
Share:

Announcements

Will be posting twice a week on latest java libraries/frameworks which a developer needs to know in 2019.
Also will add the common errors and resolutions for the same.

Please feel free to comment if you need anything specific.

Popular Posts

Search This Blog

Blog Archive

Powered by Blogger.

Contributors

Convert json to avro record Object in java

Introduction: Avro is a popular data serialization system that offers efficient data exchange and storage capabilities. When working with Av...

Pages