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
Pan Sem 2 years ago committed by GitHub
parent 9eb500af2d
commit a6163096ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      content/roadmaps/102-devops/content/112-management-and-monitoring.md
  2. 7
      content/roadmaps/110-java/content/104-java-orm/103-ebean.md
  3. 3
      content/roadmaps/110-java/content/104-java-orm/readme.md
  4. 9
      content/roadmaps/110-java/content/106-java-jdbc/100-jdbi3.md
  5. 3
      content/roadmaps/110-java/content/106-java-jdbc/101-jdbc-template.md
  6. 3
      content/roadmaps/110-java/content/107-testing-java-apps/101-cucumber-jvm.md

@ -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>

@ -5,3 +5,6 @@ A programming method to map objects in Java to relational entities in a database
- Spring Data JPA
- Hibernate
- Ebean
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.altexsoft.com/blog/object-relational-mapping/'>ORM tutorial</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>

@ -5,6 +5,7 @@ Cucumber-JVM is a pure Java implementation of Cucumber. You can [run](https://cu
Cucumber-JVM also integrates with all the popular [Dependency Injection containers](https://cucumber.io/docs/installation/java/#dependency-injection).
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://cucumber.io'>Cucumber - Official Website</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Official Repo' href='https://github.com/cucumber/cucumber-jvm'>Cucumber JVM - GitHub</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://automationpanda.com/2017/10/24/cucumber-jvm-for-java/'>Cucumber-JVM for Java</BadgeLink>
<BadgeLink colorScheme='purple' badgeText='Watch' href='https://www.youtube.com/watch?v=jCzpxvAJoZM'>Cucumber-JVM 5 with Enhanced Cucumber Expression</BadgeLink>
<BadgeLink colorScheme='purple' badgeText='Watch' href='https://www.youtube.com/watch?v=jCzpxvAJoZM'>Cucumber-JVM 5 with Enhanced Cucumber Expression</BadgeLink>

Loading…
Cancel
Save