Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 3.52 KB

document.md

File metadata and controls

53 lines (36 loc) · 3.52 KB

JAVA SPRING BOOT WITH CACHE DATABASE

What is Intersystem caché database?

InterSystems Cache is a commercial operational database management system from InterSystems, used to develop software applications for healthcare management, banking and financial services, government, and other sectors. Customer software can use the database with object and SQL code. Caché also allows developers to directly manipulate its underlying data structures: hierarchical arrays known as M technology.

Benefits of Caché database:

  • The object and relational database systems talk directly to the database engine for extremely efficient operation; there is no object-relational middleware or SQL-to-object bridge technology.
  • The logical separation of the database from its physical implementation makes it possible to radically reconfigure application deployments with no change to application logic.
  • Because the database engine interface is open, you can make direct use of its features where needed. This can range from building your own customized database management system to adding targeted optimizations to performance critical applications.

What is Java spring boot?

Spring Boot provides a good platform for Java developers to develop a stand-alone and production-grade spring application that you can just run. You can get started with minimum configurations without the need for an entire Spring configuration setup.

Advantages of Spring boot:

  • Easy to understand and develop spring applications
  • Increases productivity
  • Reduces the development time

What is Maven in spring boot?

Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.

What is Gradle in spring boot?

Gradle is a build automation system that is fully open source and uses the concepts you see on Apache Maven and Apache Ant. It uses domain-specific language based on the programming language Groovy, differentiating it from Apache Maven, which uses XML for its project configuration. It also determines the order of tasks run by using a directed acyclic graph.

How can we connect the Spring boot with Cache database?

-> java spring project using either maven or gradle. -> Set the connection of JDBC Driver,Url,Username,Password in gradle’s application properties.

Getting Started

Reference Documentation

For further reference, please consider the following sections:

Guides

The following guides illustrate how to use some features concretely:

Additional Links

These additional references should also help you: