From 783ce55262aa7fd25d80342b9c63fe55859218fe Mon Sep 17 00:00:00 2001 From: Inaki Fernandez Date: Thu, 4 Jun 2020 18:24:49 +0200 Subject: [PATCH] reorg --- docs/SpringBoot.md | 31 ----- docs/SpringCloud.md | 3 - docs/index.md | 42 +++---- .../java-and-java-performance-optimization.md | 60 --------- docs/java_frameworks.md | 115 ++++++++++++++++++ docs/quarkus.md | 14 --- 6 files changed, 134 insertions(+), 131 deletions(-) delete mode 100644 docs/SpringBoot.md delete mode 100644 docs/SpringCloud.md create mode 100644 docs/java_frameworks.md delete mode 100644 docs/quarkus.md diff --git a/docs/SpringBoot.md b/docs/SpringBoot.md deleted file mode 100644 index 149b982e..00000000 --- a/docs/SpringBoot.md +++ /dev/null @@ -1,31 +0,0 @@ -# SpringBoot -- [spring.io](https://spring.io/) -- [SpringBoot](https://spring.io/projects/spring-boot) -- [dzone: All About Spring Boot (Tutorials and Articles)](https://dzone.com/articles/spring-boot-framework-tutorials) -- [jaxenter.com: CI/CD for Spring Boot Microservices: Part 1](https://jaxenter.com/cicd-microservices-docker-162408.html) -- [jaxenter.com: CI/CD for Spring Boot Microservices: Part 2. Extending CI/CD: Kubernetes Continuous Deployment for Microservices](https://jaxenter.com/kubernetes-microservices-162690.html) -- [dzone: Deploying Spring Boot App to JBoss Wildfly](https://dzone.com/articles/deploying-spring-boot-app-to-jboss-wildfly) -- [Spring Boot: ΒΏwar o jar? Ambos](https://www.adictosaltrabajo.com/2018/12/13/spring-boot-war-o-jar-ambos/) -- [javatutorial.net: Spring vs. Java EE](https://javatutorial.net/spring-vs-java-ee) -- [medium.com: Spring Cloud kubernetes for hybrid microservices architecture](https://medium.com/javarevisited/spring-cloud-kubernetes-for-hybrid-microservices-architecture-f487d67328d0) -- [10 Free Spring Boot Courses and Tutorials for Java Developers](https://medium.com/javarevisited/10-free-spring-boot-tutorials-and-courses-for-java-developers-53dfe084587e) - -## SpringBoot with Docker -* [spring.io: spring boot with docker](https://spring.io/guides/gs/spring-boot-docker/) -* [spring.io: Creating Docker images with Spring Boot 2.3.0.M1](https://spring.io/blog/2020/01/27/creating-docker-images-with-spring-boot-2-3-0-m1) -* [learnk8s.io: Developing and deploying Spring Boot microservices on Kubernetes](https://learnk8s.io/spring-boot-kubernetes-guide) -* [youtube: Creating Docker Images With Spring Boot](https://www.youtube.com/watch?v=1w1Jv9qssqg) - -
- -
- -## CI/CD for kubernetes -* [CI/CD for Kubernetes through a Spring Boot example (Banzai Cloud CI/CD)](https://teletype.in/@sravancynixit/CcwqFANxY) - ---- -
-[![microservice arch](images/microservice_arch.png)](https://medium.com/javarevisited/10-free-spring-boot-tutorials-and-courses-for-java-developers-53dfe084587e) -
- - diff --git a/docs/SpringCloud.md b/docs/SpringCloud.md deleted file mode 100644 index a83de3b1..00000000 --- a/docs/SpringCloud.md +++ /dev/null @@ -1,3 +0,0 @@ -# Spring Cloud -- [Java - Spring Cloud](https://spring.io/projects/spring-cloud) -- [Spring Cloud Kubernetes for hybrid microservices architecture](https://medium.com/javarevisited/spring-cloud-kubernetes-for-hybrid-microservices-architecture-f487d67328d0) diff --git a/docs/index.md b/docs/index.md index 699d3b28..fe0fbab3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -82,50 +82,46 @@ A curated list of awesome references collected since 2018. Microservices archite - [Selenium, Appium & Zephyr Jira plugin](selenium-appium-zephyr.md) - [Linux & SSH 🌟](linux.md) - [YAML processors](yaml-processors.md) -12. [Java Memory Management & Java Performance Optimization](java-and-java-performance-optimization.md) - - [Java Parameters Matrix Table 🌟](jvm-parameters-matrix-table.md) -13. [Caching Solutions](caching.md) -14. [Monitoring and Performance. Prometheus, Grafana, APMs and more 🌟](monitoring.md) -15. Configuration Management +12. [Caching Solutions](caching.md) +13. [Monitoring and Performance. Prometheus, Grafana, APMs and more 🌟](monitoring.md) +14. Configuration Management - [Ansible](ansible.md) - [Chef](chef.md) - [Liquibase](liquibase.md) - [Terraform & Packer](terraform.md) -16. Databases on Kubernetes +15. Databases on Kubernetes - [Relational Databases and Database DevOps. CrunchyData Postgres Operator 🌟](databases.md) - [NoSQL Databases](nosql.md) -17. [Cloud Based Integration & Messaging. Data Processing & Streaming (aka Data Pipeline) 🌟](message-queue.md) -18. [Service Mesh](servicemesh.md) +16. [Cloud Based Integration & Messaging. Data Processing & Streaming (aka Data Pipeline) 🌟](message-queue.md) +17. [Service Mesh](servicemesh.md) - [Consul](consul.md) - [Envoy & xDS protocol](envoyproxy.md) - [Istio](istio.md) - [Linkerd](linkerd.md) - [Maesh](maesh.md) - [Traffic Director](trafficdirector.md) -19. [Security and DevSecOps. Container Security](devsecops.md) +18. [Security and DevSecOps. Container Security](devsecops.md) - [Security Policy as Code](securityascode.md) -20. [Cloud Native Storage](storage.md) -21. [APIs with SOAP, REST and gRPC 🌟](api.md) +19. [Cloud Native Storage](storage.md) +20. [APIs with SOAP, REST and gRPC 🌟](api.md) - [Swagger code generator for REST APIs](swagger-code-generator-for-rest-apis.md) - [API Test Automation with Postman](postman.md) - [API Marketplaces. API Management with API Gateways & Developer Portals 🌟](developerportals.md) -22. Development & Frameworks +21. Development & Frameworks - [Angular](angular.md) - [Document Object Model (DOM)](dom.md) - - [Java - Spring Framework](SpringFramework.md) - - [Java - SpringBoot](SpringBoot.md) - - [Java - Spring Cloud](SpringCloud.md) - - [Java - Jakarta EE](https://jakarta.ee/) - - [Java - Quarkus](quarkus.md) + - [Java & Java Programming Models](java_frameworks.md) + - [Java Memory Management & Java Performance Optimization](java-and-java-performance-optimization.md) + - [Java Parameters Matrix Table 🌟](jvm-parameters-matrix-table.md) - [JavaScript - node.js & npm](javascript.md) - [Python - Django & Flask](python.md) - [Xamarin](xamarin.md) -23. Dev Environment +22. Dev Environment - [Visual Studio Code 🌟](visual-studio.md) - [WSL: Linux Dev Environment on Windows](linux-dev-env.md) - [Scaffolding Tools](scaffolding.md) - [ChromeDevTools](ChromeDevTools.md) -24. Public Cloud +23. Public Cloud - [Public Cloud Solutions](public-cloud-solutions.md) - [Edge Computing](edge-computing.md) - [Cloud Architecture Diagram Tools](cloud-arch-diagrams.md) @@ -140,10 +136,10 @@ A curated list of awesome references collected since 2018. Microservices archite - [Oracle Cloud](oraclecloud.md) - [Digital Ocean](digitalocean.md) - [Cloudflare](cloudflare.md) -25. [E-Learning](elearning.md) -26. [Customer Success Stories 🌟](customer.md) -27. [Subreddits and Newsfeeds](newsfeeds.md) -28. [Other Awesome Lists 🌟](other-awesome-lists.md) +24. [E-Learning](elearning.md) +25. [Customer Success Stories 🌟](customer.md) +26. [Subreddits and Newsfeeds](newsfeeds.md) +27. [Other Awesome Lists 🌟](other-awesome-lists.md)