0% found this document useful (0 votes)
5 views2 pages

Spring Boot Basics and Java 8 Features

The document discusses Spring, Spring Boot, dependency injection, annotations, connecting to multiple databases, immutable Strings, StringBuffer, dependency injection scenarios, Java 8 features, singleton classes, microservices, this and super keywords, final methods, and second level caching in Spring.

Uploaded by

Jegan ji
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views2 pages

Spring Boot Basics and Java 8 Features

The document discusses Spring, Spring Boot, dependency injection, annotations, connecting to multiple databases, immutable Strings, StringBuffer, dependency injection scenarios, Java 8 features, singleton classes, microservices, this and super keywords, final methods, and second level caching in Spring.

Uploaded by

Jegan ji
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

what is he diferenceetweenspreng andspring boot.

what is dependecy injection.

what is ioc?

what are all the anotations u know.

what is qualifier.

how two diffecrent databse u connect through the application.

Following is the [Link] file that contains configurations


for multiple databases.
You can notice that properties starting from [Link] has user
database configuration
and properties starting from [Link] has booking datasource
configurations.
These configurations are used in the coming sections while configuring
entitymanager
and transactionmanager for respective DB connections.

[Link]=jdbc:mysql://localhost:3306/user
[Link]=root
[Link]=root
[Link]-class-name=[Link]

[Link]=jdbc:mysql://localhost:3306/booking
[Link]=root
[Link]=root
[Link]-class-name=[Link]

why strin is immutble.

string and stringbuffern.

relas time scenio of dependency injection.

java 8 features.

singleton class.

what is microservices.

this ans super?

finalmethod

what is second levelcaching in spring?


1. Describe the newly added features in Java 8?

Stream API

You might also like