Anyone have real time interview question of java & spring boot?

|
Mohit 2022-09-01 20:09:50
springbootmicroservices-76598.jpg

Mohit 2022-09-01 20:09:50
springbootmicroservices-76597.jpg

Mohit 2022-09-01 20:09:50
springbootmicroservices-76596.jpg

Mohit 2022-09-01 20:10:15
String constant ko constant class m daal kr us constant  variable ko use ..
Anyone help me?
Siddharth Sharma 2022-09-01 20:10:27
Hello everyone, I need one help..I want to have seminar report on “Microservices & ci/cd”. Please if any one can contribute or help me in finding..it would be great
Rajesh Gotinathan 2022-09-01 21:20:54
I’ve 2 yoe in tcs but i did my graduation in EEE
Ayush Tembhurne 2022-09-01 21:25:53
Ok
Dd 2022-09-01 21:51:02
Hey Maven is running only one profile when I run following
<?xml version=”1.0″ encoding=”UTF-8″?>
<project xmlns=”http://maven.apache.org/POM/4.0.0″ xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd”>
<modelVersion>4.0.0</modelVersion>
<groupId>com.fresco.play</groupId>
<artifactId>maven-profile-explicit</artifactId>
<packaging>jar</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>maven-profile-explicit</name>
<!– Insert your configurations here –>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>id.package</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>

<echo message=”Packaged for environment: ${db.env}”/>
<echo message=”DB URL: ${db.url}”/>
<echo>DB Username: ${db.username}</echo>
<echo>DB Password: ${db.password}</echo>

</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<db.env>DEV</db.env>
<db.url>jdbc:mysql://localhost:3306/dev</db.url>
<db.username>devuser</db.username>
<db.password>devpwd</db.password>
</properties>
</profile>
<profile>
<id>qa</id>
<activation>
<property>
<name>env</name>
<value>qa</value>
</property>
</activation>
<properties>
<db.env>QA</db.env>
<db.url>jdbc:mysql://serv01:3306/qa</db.url>
<db.username>qauser</db.username>
<db.password>qapwd</db.password>
</properties>
</profile>
<profile>
<id>prod</id>
<activation>
<property>
<name>env</name>
<value>prod</value>
</property>
</activation>
<properties>
<db.env>PROD</db.env>
<db.url>jdbc:mysql://live01:3306/prod</db.url>
<db.username>produser</db.username>
<db.password>******</db.password>
</properties>
</profile>
</profiles>
</project>

I want to execute qa when I do something like this mvn package -Penv=qa
Any Suggestions?

Naveen Lovely 2022-09-01 23:03:41
I have a gradle project can we convert it into maven is it possible?
Naveen Lovely 2022-09-01 23:03:59
Naveen Lovely 2022-09-01 23:03:41
I have a gradle project can we convert it into maven is it possible?

Can anyone please help me with this

Rajpootakhil 2022-09-02 04:18:23
Naveen Lovely 2022-09-01 23:03:41
I have a gradle project can we convert it into maven is it possible?

check what dependencies are there in gradle file add those dependencies into your maven file of new project

Silu9777 2022-09-02 07:22:35
Hi All

Anyone having idea how to login with google in spring boot

Where angular is used in front-end

Joshna 2022-09-02 07:38:07
Does anyone have core spring videos?
java19950000 2022-09-02 08:01:20
Anyone know how can create different subtype java object based on Json request specific values in Spring please guide me.
lucky 2022-09-02 08:32:28
Anyone completed 62653 course
lucky 2022-09-02 08:34:46
springbootmicroservices-76656.jpg
Please i want code?
lucky 2022-09-02 08:34:46
springbootmicroservices-76655.jpg

lucky 2022-09-02 08:34:46
springbootmicroservices-76654.jpg

lucky 2022-09-02 08:34:46
springbootmicroservices-76653.jpg

Rajatg01 2022-09-02 09:21:41
How to check which dependency is dependent on spring 4.x versions?????
Riya R 2022-09-02 09:33:17
springbootmicroservices-76663.jpg
I’m not able to publish my website by GitHub….
Anyone Please Help me…
?
Rahul Gupta 2022-09-02 09:34:11
Anyone have real time interview question of java & spring boot?
For preparation purpose
priyasy 2022-09-02 09:53:29
springbootmicroservices-76668.jpg

priyasy 2022-09-02 09:53:59
springbootmicroservices-76669.jpg

priyasy 2022-09-02 09:54:12
Please help me dear guys
Akkisharma03 2022-09-02 11:05:36
What project may i do on SpringBoot that will teach me more and more things
Akkisharma03 2022-09-02 11:06:31
Any one suggest
Chetan_8513 2022-09-02 11:11:07
Akkisharma03 2022-09-02 11:05:36
What project may i do on SpringBoot that will teach me more and more things

Do some CRUD operation project

Akkisharma03 2022-09-02 11:11:58
I have done this already
MohammedYasir 2022-09-02 11:20:09
Try microservuces design pattern
|