Этот коммит содержится в:
Ihar Hancharenka 2023-08-18 19:09:04 +03:00
родитель b324b9745d
Коммит 7049bdd129
9 изменённых файлов: 38 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1 @@
https://www.mongodb.com/docs/drivers/node/current/fundamentals/connection/network-compression/#std-label-compression-dependencies

Просмотреть файл

@ -2,6 +2,8 @@
Hughes - SQL Query Design Patterns and Best Practices
B55D176F3FC4504A52650A65AEA0B58C
! MS specific
Simon - Getting Started with SQL and Databases
! prety simple
2022
Shields - SQL Quick Start Guide ru
E7913689CF89B8E86DE0BBA34E1849B1

Просмотреть файл

@ -1,3 +1,6 @@
2023
Korotkevich - SQL Server Advance Troubleshooting and Performance Tuning ru
????
2022
Fritchey - SQL Server 2022 Query Performance Tuning
1CC1FE1B8493625D762C656DEE6DDDF4

4
pl/cross/coredump/books.txt Обычный файл
Просмотреть файл

@ -0,0 +1,4 @@
2023
Vostokov - ...
B52B3DE3CF7E924FA1EEE7DBA0A18BF4
7C3D6AAD13BD65F99F5981D8CA04728B

Просмотреть файл

@ -1,3 +1,6 @@
????
Waila - Mastering Cloud Native Microservices
! good, but arch-only
2022
OliveiraRocha - Practical Event-Driven Microservices Architecture
90EEB7AF617ECBD34E54E91F1693FDBC

Просмотреть файл

@ -0,0 +1,3 @@
2023
Bischoff - Writing API Tests with Karate
! need to find

Просмотреть файл

@ -1,3 +1,6 @@
2023
Weidig - A Functional Approach to Java
5598D83FC6643344AAD521185CF20B6B
2017
Saumont - Functional Programming in Java
EE8F3550CB34120C359781A40CA3D4AB

Просмотреть файл

@ -1,3 +1,20 @@
Well, theres one exception to the rule (pun intended). You can take advantage of a change in Javas type inference
regarding Generics and Exceptions in Java 8.
In simple terms, if there are no upper or lower bounds on a generic method signature with throws E,
the compiler assumes the type E to be a
RuntimeException.
This allows you to create the following sneakyThrow:
<E extends Throwable> void sneakyThrow(Throwable e) throws E {
throw (E) e;
}
Regardless of the actual type for the argument e, the compiler assumes throws E to be a RuntimeException
and thereby exempts the method from the catch-or-specify requirement.
The compiler might not complain, but this approach is highly problematic.
https://stackoverflow.com/questions/27644361/how-can-i-throw-checked-exceptions-from-inside-java-8-streams
https://projectlombok.org/features/SneakyThrows

Просмотреть файл

@ -1,6 +1,8 @@
https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/test/web/client/TestRestTemplate.html
https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/http/ResponseEntity.html
import org.springframework.web.client.RestTemplate
2023
https://www.baeldung.com/spring-resttemplate-exchange-postforentity-execute
2021