I've written an article about AI and the future of development. What things will change? What skills will become crucial? And what should we not be afraid of?
Feel free to leave your comments and likes ;)
https://t.co/Y1g5q6F5wq
18 октября выступаю на Joker в Питере. Расскажу про неочевидные проблемы performance в Spring Data JPA.
Если кто-то хочет скидку на билет, пишите в личку :)
https://t.co/DOYo26TKgz
I've written an article about #jooq and #hibernate. Specifically, JOOQ cannot replace Hibernate because these tools solve different problems.
https://t.co/b1MO010rbs
#java#article#techarticle
28 ноября выступаю на @TeamLeadConf. Расскажу про Story Points:
1. Зачем оценивать задачи?
2. Способы оценки: человеко-часы, футболки и Story Points.
3. Антипаттерны при использовании Story Points;
Приходите. Буду рад всех видеть :)
https://t.co/Ms1IJriTAf
@wimdeblauwe We use it in our project. Fine and convenient piece. Especially the fact that the library has Jackson module to store outbox records as JSON
I wrote a new article about creating custom methods in your REST API. What method should you use to send an email draft? Is it POST? Or maybe PATCH that changes the draft status? You will find the answer in my article ;)
https://t.co/2tEW3RLz7b
16 апреля выступаю на #java митапе МТС. Расскажу про Rich Domain Model в Spring и Hibernate. Буду рад всех видеть в оффлайне и онлайне ;)
https://t.co/fRgAvFNoH7
@simas_ch Oh, I get it now 😅. MapStruct provides an interface and generates its implementation. Well, the presence of interface assumes multiple types of behaviour. But mostly there is only one way to map A to B. That makes this level of abstraction obsolete IMHO
@simas_ch Yeah, that’s what I meant ;)
I haven’t heard about ObjectMapper library. Is it an actual thing? When I try to google “Java ObjectMapper” I only get result about Jackson
@simas_ch Anyway, a Java record has to be transformed to JSON somehow. For instance, if you return it in controller method. If you use Spring Boot, it uses ObjectMapper underneath by default
@simas_ch But how do you transform an entity or a JOOQ projection to JSON? For example, consider a regular GET endpoint “get something by id”. I need to return application/json format for a client.