In what order should catch blocks be arranged (for example, FileNotFoundException and IOException)?
Java
What is the role and purpose of Spring Boot Starter components in a project?
What other problems can arise in multithreading?
What is an index in a relational DBMS? Why is it needed? When should it not be used?
How to forcibly set the number of threads for a stream?
What will happen on the next push call?
What is the difference between HashMap and LinkedHashMap?
How does Kafka support message order and guarantee their non-loss?
Why is it safer to transmit data via POST rather than GET?
Tell about the semantics of message delivery guarantees (at-most-once, at-least-once, exactly-once).
What is the difference between Spring Boot Starter and a regular library?
Do you know about retry policies in Kafka and how they work?
What is ACID in databases? Tell about each property.
What is the difference between publishOn and subscribeOn in Reactor?
@Service @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE) class MyService { public String getMessage() { return "Hello from MyService! Instance: " + this.hashCode(); } } @RestController public class MyRestController { @Autowired private MyService myService; @GetMapping("/api/hello") public String hello() { return myService.getMessage(); } } curl [link] Hello from MyService! Instance: 56149 curl [link] Hello from MyService! Instance: ???????
В чем разница между проверяемыми (checked) и непроверяемыми (unchecked) исключениями?
Using ConcurrentHashMap, how does its operation differ from a regular HashMap?
What is the difference between SOAP and REST?
Is there an open individual entrepreneur, self-employment, or other employment?
Tell us about transaction isolation levels and the anomalies they address.