зеркало из
https://github.com/iharh/notes.git
synced 2025-10-29 20:56:06 +02:00
m
Этот коммит содержится в:
родитель
b324b9745d
Коммит
7049bdd129
1
db/nosql/mongo/features/network-compression.txt
Обычный файл
1
db/nosql/mongo/features/network-compression.txt
Обычный файл
@ -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
|
Hughes - SQL Query Design Patterns and Best Practices
|
||||||
B55D176F3FC4504A52650A65AEA0B58C
|
B55D176F3FC4504A52650A65AEA0B58C
|
||||||
! MS specific
|
! MS specific
|
||||||
|
Simon - Getting Started with SQL and Databases
|
||||||
|
! prety simple
|
||||||
2022
|
2022
|
||||||
Shields - SQL Quick Start Guide ru
|
Shields - SQL Quick Start Guide ru
|
||||||
E7913689CF89B8E86DE0BBA34E1849B1
|
E7913689CF89B8E86DE0BBA34E1849B1
|
||||||
|
|||||||
@ -1,3 +1,6 @@
|
|||||||
|
2023
|
||||||
|
Korotkevich - SQL Server Advance Troubleshooting and Performance Tuning ru
|
||||||
|
????
|
||||||
2022
|
2022
|
||||||
Fritchey - SQL Server 2022 Query Performance Tuning
|
Fritchey - SQL Server 2022 Query Performance Tuning
|
||||||
1CC1FE1B8493625D762C656DEE6DDDF4
|
1CC1FE1B8493625D762C656DEE6DDDF4
|
||||||
|
|||||||
4
pl/cross/coredump/books.txt
Обычный файл
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
|
2022
|
||||||
OliveiraRocha - Practical Event-Driven Microservices Architecture
|
OliveiraRocha - Practical Event-Driven Microservices Architecture
|
||||||
90EEB7AF617ECBD34E54E91F1693FDBC
|
90EEB7AF617ECBD34E54E91F1693FDBC
|
||||||
|
|||||||
3
pl/cross/tools/quality/test/automation/karate/docs/books.txt
Обычный файл
3
pl/cross/tools/quality/test/automation/karate/docs/books.txt
Обычный файл
@ -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
|
2017
|
||||||
Saumont - Functional Programming in Java
|
Saumont - Functional Programming in Java
|
||||||
EE8F3550CB34120C359781A40CA3D4AB
|
EE8F3550CB34120C359781A40CA3D4AB
|
||||||
|
|||||||
@ -1,3 +1,20 @@
|
|||||||
|
Well, there’s one exception to the rule (pun intended). You can take advantage of a change in Java’s 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://stackoverflow.com/questions/27644361/how-can-i-throw-checked-exceptions-from-inside-java-8-streams
|
||||||
|
|
||||||
https://projectlombok.org/features/SneakyThrows
|
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-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
|
https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/http/ResponseEntity.html
|
||||||
|
|
||||||
|
import org.springframework.web.client.RestTemplate
|
||||||
|
|
||||||
2023
|
2023
|
||||||
https://www.baeldung.com/spring-resttemplate-exchange-postforentity-execute
|
https://www.baeldung.com/spring-resttemplate-exchange-postforentity-execute
|
||||||
2021
|
2021
|
||||||
|
|||||||
Загрузка…
x
Ссылка в новой задаче
Block a user