RBRamesh Bathiniinbathiniramesh.hashnode.dev·May 24, 2021 · 2 min readDesign principles for better DeveloperWhat are good developers and what distinguishes them? typing fast or the number of lines of code per day. It can not be calculated like that right? In my understanding a good developer writing working code all the time. How any developer can write co...00
RBRamesh Bathiniinbathiniramesh.hashnode.dev·May 23, 2021 · 8 min readGuide for Spring annotationsHere you can go for a list of annotations of spring and its purpose @Bean - Annotated method produces a bean managed by the Spring IoC container @Component - Marks annotated class as a bean found by the component-scanning and loaded into the applicat...00
RBRamesh Bathiniinbathiniramesh.hashnode.dev·May 22, 2021 · 5 min readComplete guide about columnar databasesDo you want your reports or dashboards to works fast? Do you have a requirement to work fast with database operations? Wants to know when a columnar DB is preferred? Here you go for clarifications. Columnar DBMS is a database management system (DBMS)...00
RBRamesh Bathiniinbathiniramesh.hashnode.dev·May 21, 2021 · 3 min readDifference between 32 bit and 64-bit java installationIn computing, a byte is the unit of data and processing of data is generally denoted as bit processing. In general, there exist two types of processors namely a 32-bit processor and a 64-bit processor. In 64-bit processors will have more storage and ...00
RBRamesh Bathiniinbathiniramesh.hashnode.dev·May 20, 2021 · 4 min readHow to make immutable class in JavaJava documentation itself has some guidelines identified to write immutable classes. We will try to understand what these guidelines mean actually by creating an immutable class with mutable object with Date field. A Strategy for Defining Immutable O...00