Add content for devops monitoring (#2212)
* Fill or add info to orm, cucumber-jvm, jdbi3, ebean and jdbc template nodes * Fill devops node management and monitoring * Update content/roadmaps/102-devops/content/112-management-and-monitoring.md Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>pull/2210/head^2
parent
9eb500af2d
commit
a6163096ed
6 changed files with 27 additions and 4 deletions
@ -1 +1,5 @@ |
||||
# Management and monitoring |
||||
# Management and Monitoring |
||||
|
||||
DevOps management and monitoring entails overseeing the entire development process from planning, development, integration and testing, deployment, and operations. It involves a complete and real-time view of the status of applications, services, and infrastructure in the production environment. Features such as real-time streaming, historical replay, and visualizations are critical components of application and service monitoring. |
||||
|
||||
<BadgeLink badgeText='Get Started Guide' colorScheme='blue' href='https://www.atlassian.com/devops/devops-tools/devops-monitoring'>Management and Monitoring Get Started Guide</BadgeLink> |
@ -1 +1,6 @@ |
||||
# Ebean |
||||
# Ebean |
||||
|
||||
Ebean is an object–relational mapping product written in Java. It is designed to be simpler to use and understand than JPA (Java Persistence API) or JDO (Java Data Objects) products. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Site' href='https://ebean.io/'>Ebean</BadgeLink> |
@ -1 +1,8 @@ |
||||
# Jdbi3 |
||||
# Jdbi3 |
||||
|
||||
Jdbi provides convenient, idiomatic access to relational data in Java. Jdbi 3 is the third major release which introduces enhanced support for Java 8, countless refinements to the design and implementation, and enhanced support for modular plugins. |
||||
|
||||
Jdbi is built on top of JDBC. If your database has a JDBC driver, you can use Jdbi with it. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Site' href='https://jdbi.org/'>JDBI</BadgeLink> |
@ -1,3 +1,6 @@ |
||||
# JDBC Template |
||||
|
||||
JDBCTemplate is a central class in the JDBC core package that simplifies the use of JDBC and helps to avoid common errors. It internally uses JDBC API and eliminates many problems with JDBC API. It executes SQL queries or updates, initiating iteration over ResultSets, catching JDBC exceptions, and translating them to the generic. It executes core JDBC workflow, leaving application code to provide SQL and extract results. It handles the exception and provides informative exception messages with the help of exception classes defined in the `org.springframework.dao` package. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.baeldung.com/spring-jdbc-jdbctemplate'>JDBC Template tutorial</BadgeLink> |
Loading…
Reference in new issue