Friendzworld Friendz Diary,Personal Polaris Just Like That Party

Polaris Just Like That Party

This year Polaris arranged the Just Like That get together party at Mamalla resort. They arranged the transport for the associates. BSC1 associates are working in the Sakthi Towers office located in Mount Road. The bus was started from Mount road at 3:30 PM. We reached the Mamalla resort around 5 PM. We went to the beach and we played in the beach.
They conducted some fun games in the stage. Some people sung songs. They provided some funny awards to the people. Varun Kumar from our team got the Apporva Saotharargal award. and Sekhar got the tension thangarasu. With 2 Awards for our 4c team we got more awards credit goes to varun and sekhar. Sekar missed so many awards but finally get way with tension thangarasu.

The function got over at 7:30 and the real party was begun at 7:30PM. Bar was opened in one side and the food was provided in another side. In the Bar, Beer was provided to all the associates. Most of the associates drank beer and went to have their dinner. The dinner was over at 8:30.
After the party, the bus was started. Totally 6 buses were arranged for the associates. Everyone was returned to their home safely. The party was really fun for all the associates. Hope Ben from our team went with 10 glass of beers happliy

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Happy Pongal To allHappy Pongal To all

Pongal is a highly revered festival celebrated in Tamil Nadu to mark the harvesting season. it is An important festival in India, Pongal is celebrated by offering prayers to the Sun God and exchanging Pongal gifts among family members, relatives and friends.
The pongal festival is celedrated for four-day with different varieties..

Bogi Festival
Surya Pongal
Mattu Pongal
Kaanum Pongal

Happy Pongal To every body….

My visit to Vetrivel Theatre to see 2012 MovieMy visit to Vetrivel Theatre to see 2012 Movie

My friend puva and I was very eager to see this movie 2012 our eagerness also kept on increasings. So we planned to see the films. We decidered to go to Theater. When we reach the theater we were amazed. We saw a huge crowed which we don’t usually see for the English movie. Luckily we got the ticket. The theatre was housefull.

We saw the movie 2012 with great enthusiasm. Director Roland gave the true visual effect to audience. The way he rips the United States of America apart is amazing! Before begin to wonder, if only the American world is sinking under the towering waves, Roland shows you the destruction of Rio Di Janeiro, Buenos Aires and St Peter’s Basilica – all in the same awe-inspiring way.

Don’t miss out on the action, the lead family travels from place to place, always being present at the most catastrophic moments in each of those places! Roland must truly hate the world to want to shred it to bits. The movie 2012 is truly a visual extravaganza. Certainly to be watched.

Build Spring Boot projectBuild Spring Boot project

Microservices are built with REST APIs, and the significant reason is that they help in building loosely coupled services. Spring Boot provides the flexibility to create REST APIs quickly, which are exposed as various services.

Spring Boot Framework is quite flexible while working with SQL database. You can use direct JDBC calls using JDBC templates, or you can go by implementing hibernate. One more significant option that Spring framework offers is by creating repositories for Spring Data implementation

Spring Boot provides an option of an embedded in-memory database. This has no persistent data storage. You can retain the data as long as the application is up and running.

Steps to build a simple Spring boot application:

  • Generate a quick Java project with Maven command.
  • Update pom.xml with the Spring web and other Spring boot dependencies.
  • Add SpringApplication.run() method to bootstrap Spring application.
  • Do a Maven clean build using mvn clean package command.
  • Execute command mvn spring-boot:run to run the application.

<dependency>
  <groupid>org.springframework.boot</groupid>
 <artifactid>spring-boot-starter-data-jpa</artifactid>
</dependency>

<dependency>
  <groupid>org.hsqldb</groupid>
  <artifactid>hsqldb</artifactid>
   <scope>runtime</scope>
</dependency>

Some Technical Question and Answers :

  • Which is the default logging file in springboot? spring.log
  • What is default HTML template engine in spring boot? Thymeleaf
  • What is the Annotation used to handle GET request? @GetMapping
  • What is the Annotation used for Rest controller? @RestController
  • What is the prefix used in HTML for Thymeleaf? th:
  • What is the Minimum Java version need for Spring boot? Java 8
  • Which of the following can be used for Dependency managment in spring boot? Maven & Gradle