Home Blog Java

Java

A practical guide to completing your TLS certificate chainTL;DRSpring Boot Admin showed my application as REGISTERED → OFFLINE because the server certificate I presented during...
https://speakerdeck.com/vitalieb/efficient-logs-with-elastic-stackDemo code available at https://github.com/vitalieb/ElasticStackPresentation
IntroductionChannels are used for routing messages to endpoints.Channels do the routing and endpoints perform the operations.Spring Integration (SI) provides numerous adapters for communication between...
Advanced class design: Anonymous classes are implicitly final and it can never be static.static method > default methoddefault method > abstract methoddefault method > default method (re-declared...
I want to share with you my Spring Core Certification notes I took.Here they are:
What is Spring Boot? Spring Boot is a set of preconfigured framework that works on top of Spring Framework and simplifies configuring a Spring application. What are...
What does REST stand for? REST stands for REpresentational State Transfer. What is a resource? Anything that can be named is a resource. Usually that nouns that...
What is the delegating filter proxy? Delegating filter proxy is a servlet filter registered with the web container that delegates the requests to a Filter...

Hibernate notes

0
Hibernate is an ORM framework that implements Java Persistence API (JPA).For Hibernate to work we need 3 things:Hibernate configuration (hibernate.properties or hibernate.cfg.xml) Mapping...
What is the difference between checked and unchecked exceptions? Checked exceptions are exceptions that are checked at compile time - that fact enforces the developer...