зеркало из
https://github.com/iharh/notes.git
synced 2025-10-29 20:56:06 +02:00
m
Этот коммит содержится в:
родитель
3c1cdf12c9
Коммит
a11e0cc2b4
1
.tool-versions
Обычный файл
1
.tool-versions
Обычный файл
@ -0,0 +1 @@
|
||||
python 3.10.11
|
||||
@ -1,6 +1,8 @@
|
||||
Dmitriy Olegovich
|
||||
tg - drobnitskiy
|
||||
|
||||
https://www.youtube.com/@DROBNITSKII/videos
|
||||
|
||||
AlexeyLutsvig - Drobnitskiy
|
||||
https://www.youtube.com/playlist?list=PL1nz_WV6F5rhDNtmbGQIIIdHurfN6w8oQ
|
||||
|
||||
|
||||
@ -6,6 +6,8 @@ aurora
|
||||
https://www.youtube.com/playlist?list=PLtnoA8Ys77oSEYxYWccdahDdsrc_B3QM1
|
||||
|
||||
2024
|
||||
Valdman - Kedmi - 01.12 - Geshefts without Constitution of 50:10
|
||||
https://www.youtube.com/watch?v=xP7-TcBXNTE
|
||||
Valdman - Kedmi - 01.08 - Bycicles and Jews of 51:58
|
||||
https://www.youtube.com/watch?v=T1DP_FHoLew
|
||||
2023
|
||||
|
||||
1
nontech/politics/people/primakov.txt
Обычный файл
1
nontech/politics/people/primakov.txt
Обычный файл
@ -0,0 +1 @@
|
||||
https://www.youtube.com/@primakov_center
|
||||
6
os/linux/rh/fedora/flavors/orion.txt
Обычный файл
6
os/linux/rh/fedora/flavors/orion.txt
Обычный файл
@ -0,0 +1,6 @@
|
||||
https://boostyconnect.com/oreon/
|
||||
https://installati.one/fedora/34/orion/
|
||||
|
||||
2024
|
||||
GoshItsArch - Oreon OS: Yet Another Fedora Variant 0:00 of 15:32
|
||||
https://www.youtube.com/watch?v=JKtRmMyprLU
|
||||
@ -1,2 +1,26 @@
|
||||
2023
|
||||
https://www.baeldung.com/jackson-serialize-dates
|
||||
|
||||
import com.fasterxml.jackson.databind.DeserializationFeature;
|
||||
import com.fasterxml.jackson.databind.MapperFeature;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.fasterxml.jackson.databind.SerializationFeature;
|
||||
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.context.annotation.Primary;
|
||||
|
||||
@Configuration
|
||||
public class JacksonConfig {
|
||||
|
||||
@Primary
|
||||
@Bean
|
||||
public ObjectMapper objectMapper() {
|
||||
var result = new ObjectMapper();
|
||||
result.enable(MapperFeature.ACCEPT_CASE_INSENSITIVE_ENUMS);
|
||||
result.enable(DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_USING_DEFAULT_VALUE);
|
||||
result.registerModule(new JavaTimeModule());
|
||||
result.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
Загрузка…
x
Ссылка в новой задаче
Block a user