Sql Queries

SQL is a standard language for storing, manipulating and retrieving data in databases. Create a new user: CREATE USER 'hokageKvT'@'localhost' IDENTIFIED BY 'hokageKvT'; GRANT ALL PRIVILEGES ON * . * TO 'hokageKvT'@'localhost'; # # Starting with MySQL 8.0.4, the MySQL team changed the # default authentication plugin for MySQL server # from mysql_native_password to caching_sha2_password. … Continue reading Sql Queries

Spring Interview Questions

Q : What is the need for a Component Scan? If you understand component scan, you understand Spring. The first step of defining Spring Beans is by adding the right annotation - @Component or @Service or @Repository. However, Spring does not know about the bean unless it knows where to search for it. This part … Continue reading Spring Interview Questions