Our Project Structure::
Step 3 : Creating our Beautiful lady i.e. View
Step 4 : Make over to our Beautiful Lady i.e style.css
Step 6 : Tada Time
Words.java : this Class is used to stored each words retrieved from the database.
discServlet.java : this is used to handle all the servlet request and responses
DBConnection.java : this is used to connect to sexy database called MySQL
db.propertise : this guy called security ;) contains the credential for the database as well all the information required to connect DB
dict.html: this is beautiful lady which is only thing that is visible in the web. <3 <3
Now lets start to dive in to the ocean of love ( which means only for real programmers others please ignore this word called love )
Step 1 : Creating The database connection
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */package com.disc.jdbc;import com.mysql.jdbc.Connection;import java.io.IOException;import java.io.InputStream;import java.sql.DriverManager;import java.sql.SQLException;import java.util.Properties; /** * * @author yubraj */public class DBConnection { public static Connection connection = null; public static void main() throws IOException, SQLException, ClassNotFoundException{ connection = getConnection(); } public static Connection getConnection() throws IOException, SQLException, ClassNotFoundException{ if(connection!=null) return connection; else{ Properties prop = new Properties(); InputStream input = DBConnection.class.getClassLoader().getResourceAsStream("/com/disc/resourses/db.properties"); prop.load(input); String driver = prop.getProperty("driver"); String url = prop.getProperty("url"); String user = prop.getProperty("user"); String password = prop.getProperty("password"); Class.forName(driver); connection = (Connection) DriverManager.getConnection(url, user, password); System.out.println("Connection to MySQL is Establised..."); return connection; } } public static void close() throws SQLException { DBConnection.connection.close(); } }
also db.properties
driver= com.mysql.jdbc.Driverurl= jdbc:mysql://localhost:3306/entriesuser= rootpassword=xxx
Step 2 : Writing our Mr. Tough servlet
package com.dict.servlets; import com.disc.jdbc.DBConnection;import com.google.gson.Gson;import com.mysql.jdbc.Connection;import java.io.IOException;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.util.ArrayList;import java.util.logging.Level;import java.util.logging.Logger;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import javax.ws.rs.core.MediaType; /** * * @author yubraj */@WebServlet(name = "discServlet", urlPatterns = {"/discServlet"}) public class discServlet extends HttpServlet { @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("inside the servlet"); ArrayList<Words> map = new ArrayList<Words>(); String searchedWord = request.getParameter("word"); System.out.println("Searched Keyword: "+searchedWord); try { Connection conn = DBConnection.getConnection(); map = getData(conn, request, response, searchedWord); write(response, map); } catch (SQLException | ClassNotFoundException ex) { Logger.getLogger(discServlet.class.getName()).log(Level.SEVERE, null, ex); } catch (Exception ex) { Logger.getLogger(discServlet.class.getName()).log(Level.SEVERE, null, ex); } } private void write(HttpServletResponse response, ArrayList<Words> map) throws IOException{ response.setContentType(MediaType.APPLICATION_JSON); response.setCharacterEncoding("UTF-8"); response.getWriter().write(new Gson().toJson(map)); } @Override public String getServletInfo() { return "Short description"; }// </editor-fold> private ArrayList getData(Connection conn, HttpServletRequest request, HttpServletResponse response, String searchedWord) throws SQLException, Exception { ArrayList messageData = new ArrayList(); String selectSQL = "SELECT * FROM entries WHERE word = ? order by wordtype"; PreparedStatement preparedStatement = conn.prepareStatement(selectSQL); preparedStatement.setString(1, searchedWord); ResultSet rs = preparedStatement.executeQuery(); while (rs.next()) { Words words = new Words(); words.setWord(rs.getString("word")); words.setWordtype(rs.getString("wordtype")); words.setDefination(rs.getString("definition")); messageData.add(words); } return messageData; } }
Step 3 : Creating our Beautiful lady i.e. View
<!DOCTYPE html>
<html>
<head>
<title>Online Dictionary</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/style.css" rel="stylesheet" type="text/css"/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="js/dict.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<section>
<h2>Online Dictionery</h2>
<form id="dictForm">
<ul class="input-list mystyle clearfix">
<li >
<input type="text" name="word" placeholder=":Enter your word">
</li>
<li>
<input id="search" type="submit" value="Search">
</li>
</ul>
</form>
</section>
<div id='loadingDiv'>
Please wait...
</div>
<div id="result">
</div>
</div>
</body>
</html>
Step 4 : Make over to our Beautiful Lady i.e style.css
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
Created on : Mar 15, 2016, 11:47:44 AM
Author : yubraj
*/
body{
background-color: #dc2850;
color: #505050;
font-family: "Open Sans", sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 1.8;
}
section , .result{
margin-bottom: 10px;
padding: 30px;
background-color: #efefef;
}
.result{
margin-bottom: 5px;
}
.word{
font-weight: bold;
}
.grammer{
font-style: italic;
}
#loadingDiv{
background-color: #EFEFEF;
padding: 10px;
margin-bottom: 10px;
text-align: center;
font-size: 20px;
}
/* headings */
h2 {
margin-bottom: 0px;
padding: 5px;
font-size: 2em;
}
/* form elements */
label {
display: block;
}
input[type="text"], input[type="submit"] {
display: block;
margin: 0;
width: 100%;
font-family: "Open Sans", sans-serif;
font-size: 18px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-border-radius: none;
-moz-border-radius: none;
-ms-border-radius: none;
-o-border-radius: none;
border-radius: none;
}
input[type="text"]:focus {
outline: none;
}
/* lists */
ul.input-list {
list-style: none;
margin: 0 -10px;
padding: 0;
}
ul.input-list li {
display: block;
padding: 0 10px;
width: 46%;
float: left;
margin:5px;
}
/* ============================================================
STYLE 1
============================================================ */
.mystyle input[type="text"], input[type="submit"] {
padding: 10px;
border: solid 1px gainsboro;
-webkit-transition: box-shadow 0.3s, border 0.3s;
-moz-transition: box-shadow 0.3s, border 0.3s;
-o-transition: box-shadow 0.3s, border 0.3s;
transition: box-shadow 0.3s, border 0.3s;
}
.mystyle input[type="text"]:focus, .style-1 input[type="text"].focus {
border: solid 1px #707070;
-webkit-box-shadow: 0 0 5px 1px #969696;
-moz-box-shadow: 0 0 5px 1px #969696;
box-shadow: 0 0 5px 1px #969696;
}
.container{
width:960px;
margin: auto;
padding: 10px;
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
Step 5 : Assigning some power to our Lady i.e. JQuery i.e dict.js
$(document).ready(function(){
$('#loadingDiv').hide();
$("#search").click(function(){
$('#loadingDiv').show();
event.preventDefault();
$.ajax({
type: "POST",
url: 'discServlet',
dataType: 'json',
data:$("#dictForm").serialize(),
success: function(resp) {
$("#result").html("");
var result="";
if(resp.length=== 0){
$("#result").html("<section>No matching word found :(</section>");
$('#loadingDiv').fadeOut();
}else{
$.each(resp, function(key,value) {
$('#loadingDiv').fadeOut();
if(value['wordtype']===""){
result = result+ '<section><span class="word">'+value['word']+' </span> : <span class="desc">'+value['definition']+'</span></section>';
}
else
result = result+ '<section><span class="word">'+value['word']+' </span><span class="grammer"> ['+value['wordtype']+' ]</span> : <span class="desc">'+value['definition']+'</span></section>';
});
$("#result").html(result);
}
}
});
});
});
Step 6 : Tada Time
Now runt he app using apache tomcat or Glassfish server.
Step 7 : Coffee time
Happy Coding with Coffee. This project can also be found on Github here : OnlineDictionery
The blog you presented was very nice and interesting which helped me to get update on the recent technologies.
ReplyDeleteAngularjs training in chennai | Angularjs course in Chennai
Thanks for posting this useful content, Good to know about new things here, Let me share this,
ReplyDeleteAngularJS Training in Chennai | AngularJS Training | AngularJS Training Institute in Chennai
nice and great blog to read
ReplyDeletecore java training institute in chennai | core java training topics | core java training in chennai | core java training online
Nice Blog to read
ReplyDeleteAndroid Training in Chennai | Best Android Training in Chennai | Best Android Training in Chennai with Placement
Hi, I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post.
ReplyDeleteVMware Exam Centers in Chennai | VMware Exam Centers in Velachery
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge as updated one, keep blogging…
ReplyDeletePearson Vue Testing Center in Chennai | Java Exam Center in Velachery | Microsoft Dot net Certification in Velachery
Hi, I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post.
ReplyDeleteCitrix Exams in Chennai | Xenapp exam center in Chennai
Thank you so much for sharing with us your great blog...
ReplyDeleteOCJP Exam Center in Chennai | OCJP Exam Center in Velachery
Amazing post...Keep sharing..
ReplyDeleteNo.1 Android project Center in Chennai | No.1 Android project Center in Velachery
Wonderful articles, thanks for sharing
ReplyDeleteBest Java Training in Chennai | Java Training
I conceive you have remarked some very interesting points , thanks for the post.
ReplyDeleteVMware Exam Centers in Chennai | VMware Exam Centers in Velachery
Nice Post! It is really interesting to read from the beginning & I would like to share your blog to my circles, keep sharing…..
ReplyDeletePearson Vue Testing Center in Chennai | Java Exam Center in Velachery | Microsoft Dot net Certification in Velachery
Nice information about delegate administrator My sincere thanks for sharing this post Please Continue to share this post..
ReplyDeleteOCJP Exam Center in Chennai | OCJP Exam Center in Velachery
I conceive you have remarked some very interesting points , thanks for the post.
ReplyDeleteCitrix Exams in Chennai | Xenapp exam center in Chennai
Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.I am waiting for your next fantastic blog.Thanks for sharing.
ReplyDeleteISTQB Certification Training in Chennai | Java Exam Center in Chennai | Microsoft Dot net Certification in Chennai
Very happy to see this blog. Gives a wonderful information with coded explanation. Thank you for this blog. very useful to me.
ReplyDeleteNo.1 Power System Project Center in Chennai | No.1 Power System Projects in Velachery
I am so happy to read such a wonderful blog..Thank you...DotNet Project Center in Chennai | DotNet Project Center in Velachery
ReplyDeleteVery nice article.We have to learning for lot of new information.Thanks a lot.
ReplyDeleteVMware Exam Centers in Chennai | VMware Exam Centers in Velachery
Hi, Really your post was very informative.
ReplyDeleteCitrix Exams in Chennai | Xenapp exam center in Chennai
Thanks for sharing your informative article with impressive content.keep updating..
ReplyDeleteOCJP Exam Center in Chennai | OCJP Exam Center in Velachery
That was a very informative post. Thank you so much. Keep posting more.
ReplyDeleteVMware Exam Centers in Chennai | VMware Exam Centers in Velachery
Hi, I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post.
ReplyDeleteCitrix Exams in Chennai | Xenapp exam center in Chennai
Excellent post. I have read your blog it's very interesting and informative. Keep sharing.
ReplyDeleteCompTIA A+ Certifications Center in Chennai | A+ Exams in Perungudi
Thanks for sharing this valuable blog. Very clear step by step representation of the process. Keep updating.
ReplyDeleteCisco Certifications Exam Center in Chennai | Best Cisco Course in Thiruvanmiyur
Nice post...Keep updating..
ReplyDeleteOCJP Exam Center in Chennai | OCJP Exam Center in Velachery
A million thanks for sharing this. This whole thing is driving me crazy. Keep updating.
ReplyDeleteComptia Network+ Certification Courses in Chennai | Best N+ Courses in Tambaram
Very happy to see this blog. Gives a wonderful information with coded explanation...
ReplyDeleteNo.1 Power System Project Center in Chennai | Power System Projects in Velachery
Extraordinary blog. you put Good stuff. All the themes were clarified briefly.Thanks for sharing that post.Keep in blogging…
ReplyDeleteNo.1 Software Testing Training Institute in Chennai | Best Selenium Training Institute in Chennai | Web Designing Training Institute in Chennai
Needed to compose one little word yet thanks for the suggestions that you are contributed here, please do keep on sharing...
ReplyDeleteISTQB Certifications Course in Chennai | QA Testing in Medavakkam
Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.I am waiting for your next fantastic blog.Thanks for sharing.
ReplyDeleteAndroid Certifications Exam Training in Chennai | Android Course in Adyar
Nice Post, Thanks for your information.
ReplyDeletePython Certification Exam Coaching in Chennai | Best Python Training in T.Nagar
Nice blog with excellent information. Thank you, keep sharing.
ReplyDeleteCompTIA Network Plus Certifications Exam Training in Chennai | Network Plus in Adambakkam
Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.Thanks for sharing.
ReplyDeleteCisco CCNA Certification Course in Chennai | Excellent Cisco CCNA Course in Tambaram
Thank you for sharing this valuable information. But get out of this busy life and find some peace with a beautiful trip...CorelDraw Training Courses in Chennai | No.1 Multimedia Training in Guindy
ReplyDeleteInformative blog and it was up to the point describing the information very effectively. Thanks to blog author for wonderful and informative post...
ReplyDeleteCisco CCNP Certification Center in Chennai | CCNA Training in Velachery | No.1 CCNP Course in Guindy
Thanks for your article.
ReplyDeleteAdvanced Blue Prism Training in Chennai | UIPath Certification Training in Chennai | Advanced Automation Anywhere Training in Chennai
Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me...Thanks for sharing.
ReplyDeleteCertified Ethical Hacking Training in Chennai | No.1 Ethical Hacking in Alandur
Amazing write up..Thanks for sharing this wonderful post..
ReplyDeleteBest RPA Training Institute in Chennai | Best RPA Training Institute in Velachery
Hi, I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post.
ReplyDeleteAdvanced Blue Prism Training in Chennai | Advanced UIPath RPA Training in Chennai | Advanced Automation Anywhere Training in Chennai
That was a very informative post. Thank you so much. Keep posting more.
ReplyDeleteNo.1 Automation Anywhere Training Institute in Chennai | No.1 Automation Anywhere Training Institute in Velachery
Hi, I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post.
ReplyDeleteRPA Training Course in Chennai | RPA Training Course in Velachery
Hi, I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post.
ReplyDeleteGraphic Designing Training Institute in Chennai | Graphic Designing Training Institute in Velachery
Thanks for sharing your ideas on mobile application.Really useful to me.Continue sharing more like this.
ReplyDeleteCertified Ethical Hacking Training in Chennai | Hacking Training in Saidapet
Wow nice..thanks for sharing wonderful article..Keep sharing..
ReplyDeleteCisco CCNP Certification Exam Center in Chennai | Best CCNP Training in Alandur
Hi, I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post.
ReplyDeleteBluePrism Training Institute in Chennai | UIPath Training Institute in Chennai | Automation Anywhere Training Institute in Chennai
That was a very informative post. Thank you so much. Keep posting more.
ReplyDeleteGraphic Designing Training Institute in Chennai | UIPath Certification Training in Chennai
Impressive blog with lovely information. really very useful article for us thanks for sharing such a wonderful blog...
ReplyDeleteDot Net Project Center in Chennai | Dot Net Training in Guindy
That was a very informative post. Thank you so much. Keep posting more.
ReplyDeleteNo.1 Microsoft Azure Training Institute in Chennai | No.1 Microsoft Azure Training Institute in Velachery
Interesting post..
ReplyDeleteCertified Ethical Hacking Training in Chennai | Blue Prism Training Institute in Chennai
Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.I am waiting for your next fantastic blog.
ReplyDeleteAndroid Project Center in Chennai | No.1 Android Training in Velachery
Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.Thanks for sharing.
ReplyDeleteJava Project Center in Chennai | No.1 Java Project Training in Porur
Wonderful article.It is to define the concepts very well.Clearly explain the information.It has more valuable information for encourage me to achieve my career goal.
ReplyDeleteEmbedded Project Center Training in Chennai | Best Embedded Project Course in Adambakkam
This technical post helps me to improve my skills set, thanks for this wonder article I expect your upcoming blog, so keep sharing...
ReplyDeleteCLOUD COMPUTING Classes in Chennai | CLOUD COMPUTING Courses in Velachery
Interesting and worth able content is discussed here. The fact about current technology is explicitly stated over here. I do agree on your thoughts on how the influencers are taking advantage over emerging technology. Thanks for sharing this in here. Keep bloging like this.
ReplyDeleteSelenium Testing Course in Chennai | Selenium Testing Course in Velachery
I have read all the articles in your blog. It was really impressed after reading it. Thanks for sharing.
ReplyDeleteBSC Final Year Project Center in Chennai | MSC Project Training in Guindy
Nice..You have clearly explained about it ...Its very useful for me to know about new things..Keep on blogging..
ReplyDeleteNo.1 Automation Anywhere Training Institute in Chennai | No.1 Automation Anywhere Training Institute in Kanchipuram | No.1 Automation Anywhere Training Institute in Velachery
Hey, would you mind if I share your blog with my twitter group? There’s a lot of folks that I think would enjoy your content. Please let me know. Thank you.
ReplyDeleteNo.1 Blue Prism Training Institute in Chennai | No.1 Blue Prism Training Institute in Velachery | No.1 Blue Prism Training Institute in Kanchipuram
You truly did more than visitors’ expectations. Thank you for rendering these helpful, trusted, edifying and also cool thoughts on the topic.
ReplyDeleteAutomation Anywhere Training with Placement in Chennai | Automation Anywhere Training with Placement in Tambaram
Thanks for this grateful information. all this information is very important to all the users and can be used good at all this process.
ReplyDeletePHP Project Center in Chennai | PHP Project Center in Velachery
Hello! This is my first visit to your blog! We are a team of volunteers and starting a new initiative in a community in the same niche. Your blog provided us useful information to work on. You have done an outstanding job.
ReplyDeleteJAVA and J2EE Training Institute in Chennai | JAVA and J2EE Training Institute in Velachery
I simply wanted to write down a quick word to say thanks to you for those wonderful tips and hints you are showing on this site.
ReplyDeleteNo.1 Automation Anywhere Training Institute in Chennai | No.1 Automation Anywhere Training Institute in Velachery
That was a very informative post. Thank you so much. Keep posting more.
ReplyDeleteAndroid Final Year Project Center in Chennai | No.1 Android Training in Saidapet
Thank you for sharing this valuable information. But get out this busy life and find some peace with a beautiful trip.
ReplyDeleteBE Final Year Project Center in Chennai | BE Project in Velachery
Appreciation for really being thoughtful and also for deciding on certain marvelous guides most people really want to be aware of.
ReplyDeleteNo.1 Blue Prism Training Institute in Chennai | No.1 Blue Prism Training Institute in Kanchipuram
Nice post. It was really effective. Thank you for sharing.
ReplyDeleteMCA Final Year Project Center in Chennai | MCA Project in Tambaram
Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
ReplyDeletePython Certification Course in Chennai | Python Certification Course in OMR
Very interesting blog which helps me to get the in depth knowledge about the technology, Thanks for sharing such a nice blog…
ReplyDeleteBlue Prism Robotic Process Automation in Chennai | Blue Prism Robotic Process Automation in Chennai
Thanks for sharing this valuable information.. I saw your website and get more details..Nice work...
ReplyDeleteHardware and Networking Training in Chennai | Hardware and Networking Training in Taramani
Appreciation for really being thoughtful and also for deciding on certain marvelous guides most people really want to be aware of.
ReplyDeletePython Exam Centers in Chennai | Python Exam Centers in Chennai
Very good and informative article. Thanks for sharing such nice article, keep on updating such good articles.
ReplyDeleteC and C++ Training in Chennai | C and C++ Training in Taramani
I enjoyed reading the Post. It was very informative and useful.
ReplyDeleteOracle Training in Chennai | Oracle Training in Kanchipuram
Your Blog is really amazing with useful information you are shared here...Thank you for sharing such an informative and awesome post with us. Keep blogging article like this……..
ReplyDeleteAWS Training Institute in Chennai | AWS Training Institute in Velachery
Nice Blog… Wonderful Information and really very much useful. Thanks for sharing and keep updating…
ReplyDeleteBlueprism Exam Center in Chennai | Blueprism Exam Center in Velachery
Really I enjoy this blog….. Very nice post… Thanks for sharing and keep updating
ReplyDeleteAWS Training Institute in Chennai | AWS Training Institute in Velachery
Nice and informative article.Thanks for sharing such nice article.
ReplyDeleteBest UIPath Training Institute in Chennai | Best UIPath Training Institute in Velachery
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
ReplyDeleteBE Final Year Project Center in Chennai | BE Project in Madipakkam
Thank you so much for sharing such an amazing post with useful information with us. Keep updating such a wonderful blog….
ReplyDeleteBest CCNA Training Institute in Chennai| CCNA Training Center in Velachery
Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.I am waiting for your next fantastic blog.
ReplyDeleteEthical Hacking Training Course in Chennai | Ethical Hacking Training Course in Nanganallur
Wow such a nice blog, very help full information. Thanks for sharing.
ReplyDeleteBest Dotnet Training Institute in Chennai |Best Dotnet Training Institute in Kanchipuram
Nice blog…. with lovely information. Really very useful article for us thanks for sharing such a wonderful blog. Keep updating…..
ReplyDeleteBest Linux Training Institute in Pallikaranai| Best Linux Training Institute in Velachery
Awesome article…. Really very helpful information for us. Keep it up. Keep blogging. Looking to reading your next post,. Thank You for Sharing This Information
ReplyDeleteBest PCB Training Institute in Taramani| Best PCB Training Institute in Velachery
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
ReplyDeleteRPA Training in Chennai | RPA Training in Pallikaranai
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
ReplyDeleteAutomation Anywhere Training in Chennai | Automation Anywhere Training in Pallavaram
Good Post…. Thanks for the useful information it’s very useful to read your blog. Keep blogging article like this.
ReplyDeleteBest JAVA/J2EE Training Institute in Perungudi| Best JAVA/J2EE Training Institute in Velachery
Nice blog, really I feel happy to see this useful blog… Thanks for sharing this valuable information to our vision....
ReplyDeleteBest AWS Training Institute in Medavakkam| Best AWS Training Institute in Velachery
Nice post. This post is very helpful. Thank you so much for sharing this post….
ReplyDeleteBlue prism Training in Chennai | Blue prism Training in Besant Nagar
Awesome post…. This is really helpful for me. I like it. Thanks for sharing……
ReplyDeleteBest Azure Training Institute in Chennai| Best Azure Training Institute in Velachery
Really I enjoy this blog….. Very nice post… Thanks for sharing and keep updating.
ReplyDeleteEthical Hacking Training in Chennai | Ethical Hacking Training in ST. Thomas Mount
Really wonderful post.... My sincere thanks for sharing very useful information to the users... Please continue to share this kind of post
ReplyDeleteBest Python Exams Center in OMR| Best Python Certification Exams in OMR
Nice blog, really I feel happy to see this useful blog… Thanks for sharing this valuable information to our vision....
ReplyDeleteAutomation Anywhere Training in Chennai | Automation Anywhere Training in Ashok Nagar
Thanks its Great Article… I love to read your articles because your writing style is too good, its is very very helpful for all of us.
ReplyDeleteGraphic Designing Training in Chennai | Graphic Designing Training in Keelkattalai
Wonderful blog… You provided very interesting information here. I feel happy to read this post. I hope that you will write many posts like this… Thanks for sharing and Keep updating…..
ReplyDeletePython Training Institute in Chennai | Python Training Institute in Velachery
Very interesting blog which helps me to get the in depth knowledge about the technology, Thanks for sharing such a nice blog…
ReplyDeleteUIPath Training in Chennai | UIPath Training in Kanchipuram
Good to see this blog admin, really helpful to me. Keep sharing more like this.
ReplyDeleteEmbedded Final Year Project Center in Chennai | Embedded Training in Kanchipuram
Really I enjoy this blog….. Very nice post… Thanks for sharing and keep updating
ReplyDeleteRPA Training in Chennai | RPA Training in Pallavaram
Nice post, i learn new information from your article... keep on sharing...
ReplyDeleteBE Final Year Project Center in Chennai | BE Training in Guindy
Pretty article! I found some useful information in your blog, it was awesome to read, keep sharing.
ReplyDeleteME Final Year Project Center in Chennai | ME Training in Alandur
Nice blog. Thank you for sharing. The information you shared is very effective for learners I have got some important suggestions from it.
ReplyDeleteUIPath Training in Chennai | UIPath Training in Adyar
Really I enjoy this blog….. Very nice post… Thanks for sharing and keep updating..
ReplyDeletePHP Project Center in Chennai | PHP Project in Porur
Nice blog, really I feel happy to see this useful blog… Thanks for sharing this valuable information to our vision....
ReplyDeleteEthical Hacking Training in Chennai | Ethical Hacking Training in Kanchipuram
Very nice article.We have to learning for lot of new information.Thanks a lot.
ReplyDeleteMCA Project Center in Chennai | MCA Project in Saidapet
Thanks for sharing such a wonderful article.
ReplyDeleteJava Project Center in Chennai | Java Project in Chromepet
Really wonderful post.... My sincere thanks for sharing very useful information to the users... Please continue to share this kind of post
ReplyDeleteNo.1 RPA Training institute in Chennai | No.1 RPA Training institute in Kanchipuram
Really it was an awesome blog...... Very interesting to read, .It’s very helpful for me, Big thanks for the useful info and keep updating…
ReplyDeleteNo.1 Blue Prism Training Institute in Chennai | No.1 Blue Prism Training Institute in Velachery
Very interesting blog which helps me to get the in depth knowledge about the technology, Thanks for sharing such a nice blog…
ReplyDeleteAutomation Anywhere Certification in Chennai | Automation Anywhere Training in Pallikaranai
Nice blog…. with lovely information. Really very useful article for us thanks for sharing such a wonderful blog. Keep updating…..
ReplyDeleteRPA Training in Chennai | RPA Training in Madipakkam
Your posts is really helpful for me.Thanks for your wonderful post. I am very happy to read your post.very nice
ReplyDeleteMSC Final Year Project Center in Chennai | BSC Training in Guindy
Nice and good article. It is very useful for me to learn and understand easily. Thanks for sharing your valuable information and time. Please keep updating.
ReplyDeleteAutomation Anywhere Certification in Chennai | Automation Anywhere Exam Center in Kanchipuram
Really wonderful post.... My sincere thanks for sharing very useful information to the users... Please continue to share this kind of post.
ReplyDeleteBlue prism Exam Centers in Chennai | Blue prism Certifications in Kanchipuram
Really wonderful post.... My sincere thanks for sharing very useful information to the users... Please continue to share this kind of post.
ReplyDeleteEthical Hacking Training in Chennai | Ethical Hacking Training in Taramani
Wonderful blog… You provided very interesting information here. I feel happy to read this post. I hope that you will write many posts like this… Thanks for sharing and Keep updating…..
ReplyDeletePHP Final Year Project Center in Chennai | PHP Project in Chromepet
Thank you for your information. I have got some important suggestions from it. Keep on sharing...
ReplyDeleteBE Final Year Project Center in Chennai | BE Training in Guindy
Really wonderful post.... My sincere thanks for sharing very useful information to the users... Please continue to share this kind of post.
ReplyDeleteNo.1 Ethical Hacking Training institute in Chennai | No.1 Ethical Hacking Training institute in Velachery
Great articles, first of all Thanks for writing such lovely Post!
ReplyDeleteEmbedded Final Year Project Center in Chennai | Embedded Project in Alandur
Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.
ReplyDeleteEthical Hacking Training in Chennai | Ethical Hacking Training in Taramani
Nice blog, really I feel happy to see this useful blog… Thanks for sharing this valuable information to our vision....
ReplyDeleteVLSI Final Year Project Center in Chennai | VLSI Project Center in Madipakkam
Very good informative article. Thanks for sharing such nice article, keep on up dating such good articles.
ReplyDeleteBlueprism Exam Center in Chennai | Blueprism Exam Center in Velachery
Wonderful blog!!! I liked the complete article…. great written,Thanks for all the information you have provided…
ReplyDeleteVLSI Final Year Project Center in Chennai | VLSI Training in Madipakkam
Extraordinary blog. you put Good stuff. All the themes were clarified briefly.Thanks for sharing that post.
ReplyDeleteAndroid Final Year Project Center in Chennai | Android Project Center in Perungudi
Really wonderful post.... My sincere thanks for sharing very useful information to the users... Please continue to share this kind of post.
ReplyDeleteRobotic Process Automation Training course in Chennai | Robotic Process Automation Training course in Velachery
hank you so much for sharing such an amazing post with useful information with us. Keep updating such a wonderful blog….
ReplyDeleteBlue Prism Training in Chennai | UI Path Training in Chennai | Automation Anywhere Training in Chennai
This comment has been removed by the author.
ReplyDeleteReally it was an awesome article. Very useful & Informative..Thanks for sharing..
ReplyDeleteNo.1 Automation Anywhere Training Institute in Chennai | No.1 Automation Anywhere Training Institute in Velachery
Nice blog, really I feel happy to see this useful blog… Thanks for sharing this valuable information to our vision....
ReplyDeleteBE Final Year Project Center in Chennai | BE Project Center in Chromepet
Great and nice blog thanks sharing..I just want to say that all the information you have given here is awesome...Thank you very much for this one.
ReplyDeleteBE Final Year Project Center in Chennai | BE Project Center in Chromepet
Nice..You have clearly explained about it ...Its very useful for me to know about new things..Keep on blogging..
ReplyDeleteAndroid Final Year Project Center in Chennai | Android Training in Adambakkam
Keep sharing such type of useful information.
ReplyDeleteAndroid Final Year Project Center in Chennai | Android Training in Adambakkam
Good Post…. Thanks for the useful information it’s very useful to read your blog. Keep blogging article like this.
ReplyDeleteJava Final Year Project Center in Chennai | Android Project Center in Guindy | Java Project Center in Pallavaram
Really wonderful post.... My sincere thanks for sharing very useful information to the users... Please continue to share this kind of post.
ReplyDeleteCertified Ethical Hacking Training in Chennai | Certified Ethical Hacking Training in Velachery
Great information!!! I liked the way… how you conveyed the information. Thanks for it
ReplyDeletePHP Final Year Project Center in Chennai | PHP Project Center in Tambaram | PHP Project Centers in Pallavaram
Wow!! What a interesting blog..Thanks The information which you provided is very much useful and easy to learn as well...keep rocking and updating... looking further..
ReplyDeleteNo.1 RPA Training institute in Chennai | No.1 RPA Training institute in Velachery
I enjoyed reading the Post. It was very informative and useful.
ReplyDeleteEmbedded Final Year Project Center in Chennai | Embedded Projects in Taramani
Really I enjoy this blog….. Very nice post… Thanks for sharing and keep updating
ReplyDeleteMBA Final Year Project Center in Chennai | MBA Projects in Guindy
Nice Post thanks for sharing with us...
ReplyDeleteAutomation Anywhere in Chennai | Automation Anywhere in Velachery
Such a cute blog. Thank you for blogging. Keep adding more blogs. Very nicely presented.Best JAVA Institute in Chennai|
ReplyDeleteBest JAVA Institute in Velachery|
Best JAVA Institute in Kanchipuram|
Post is very informative… It helped me with great information so I really believe you will do much better in the future.Best Software Testing Institute in Chennai|
ReplyDeleteBest Software Testing Institute in Velachery|
Best Software Testing Institute in Kanchipuram|
Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
ReplyDeleteAdvanced .Net Course in Chennai |
Advanced .Net Course in Velachery |
Advanced .Net Course in Kanchipuram |
Very good and informative article. Thanks for sharing such nice article, keep on updating such good articles.
ReplyDeleteDot Net Final Year Project Center in Chennai | Dot Net Projects in Meenambakkam
Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your ideas.
ReplyDeleteNo.1 Microsoft Azure Training Institute in Chennai|
No.1 Microsoft Azure Training Institute in Velachery|
No.1 Microsoft Azure Training Institute in Kanchipuram|
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
ReplyDeleteBlue Prism Training Institute in Chennai | Blue Prism Training Center in Saidapet | Blue Prism Training in Perungudi | Blue Prism Exam Center in Madipakkam | Blue Prism Course in Pallikaranai
Nice Post! It is really interesting to read from the beginning and Keep up the good work and continue sharing like this.
ReplyDeleteSelenium Exam Center in Chennai | Selenium Exam Center in Velachery | Selenium Online Exam in Taramani | Selenium Certification Exam in Madipakkam | Selenium Exams in Kanchipuram
I am reading your blog regularly, what a post very interesting and great content. Thank you for your post!!!Best CLOUD COMPUTING Training Institute in Chennai |
ReplyDeleteBest CLOUD COMPUTING Training Institute in Velachery |
Best CLOUD COMPUTING Training Institute in Kanchipuram |
Neat and fruitful presentation!! I thouroughly enjoyed your article. I was searching the post like you wrote. Thanks for your sharing!!
ReplyDeletePHP Final Year Project Center in Chennai | PHP Projects in Velachery
This was an nice and amazing and the given contents were very useful and the precision has given here is good.
ReplyDeleteNo.1 Ethical Hacking Training institute in Chennai | No.1 Ethical Hacking Training institute in Kanchipuram
Really a Nice Informative Post ,Keep it up.
ReplyDeleteBest JAVA Training institute in Chennai|
Best JAVA Training institute in Velachery|
Best JAVA Training institute in Kanchipuram|
Thanks for posting this useful content, Good to know about new things here, Keep updating your blog...
ReplyDeleteSelenium Certification Training in Chennai | Selenium Certification in Velachery | Selenium Certification in Taramani | Selenium Certification in Madipakkam | Selenium Certification in Guindy
Nice blog. Thanks for sharing informative blog. Its very useful to me.
ReplyDeleteBlue Prism Certification in Chennai | Blue Prism Certification in Velachery | Blue Prism Certification in Pallavaram | Blue Prism Certification in Pallikaranai
Its really informative blog.I found useful. Thanks for sharing
ReplyDeleteawesome post. JAVA Training Course in Chennai | JAVA Training Course in Velachery
This is really too useful and have more ideas from yours. keep sharing many things and thanks for sharing the information
ReplyDeleteBest Android Training in Chennai|
Best Android Training in Velachery|
Best Android Training in Kanchipuram|
Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.
ReplyDeleteSelenium Training Institute in Chennai | Selenium Certification in Pallikaranai | Selenium Course in Velachery | Selenium Training Center in Medavakkam
Nice blog, really I feel happy to see this useful blog… Thanks for sharing this valuable information to our vision....
ReplyDeleteBest Certified Ethical Hacking Training in Chennai|
Best Certified Ethical Hacking Training in Velachery|
Best Certified Ethical Hacking Training in Kanchipuram|
Really i enjoyed very much. And this may helpful for lot of peoples. So you are provided such a
ReplyDeletenice and great article within this.
Android Training Center in Chennai | Android Training Centre in Velachary | Android Training Centre in Kancheepuram |
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
ReplyDeleteSelenium Training in Chennai | Selenium Training Center in Perungudi | Selenium Certification in Saidapet | Selenium Exam Center in Guindy | Selenium Exams in Velachery
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyDeleteAndroid Training Institute in Chennai | Android Training Institute in Velachery | Android Training in Taramani | Android Course in Chennai
Nice Post! It is really interesting to read from the beginning and Keep up the good work and continue sharing like this.
ReplyDeleteBest UIPath Training Institute in Chennai | Best UIPath Training Institute in Velachery | Best UIPath Training Institute in Kanchipuram
This is really too useful and have more ideas from yours. Keep sharing many techniques and thanks for sharing the information.
ReplyDeleteAndroid Training in Chennai | Android Training Center in Velachery | Android Training Institute in Pallikaranai
Excellent information with unique content and it is very useful to know about the information based on blogs...
ReplyDeleteNo.1 JAVA Training institute in Chennai|
No.1 JAVA Training institute in Velachery|
No.1 JAVA Training institute in Kanchipuram
Nice blog. I feel really happy to have seen your web page and look forward to so many more entertaining times reading here. Thanks once more for all the details.
ReplyDeleteAdvanced Microsoft .Net Training institute in Chennai | Advanced Microsoft .Net Training institute in Kanchipuram |Advanced Microsoft .Net Training institute in Velachery
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyDeleteSelenium Training Institute in Chennai | Selenium Training in Chennai | Selenium Training Center in Chennai | Selenium Exam Center in Chennai
Nice and good info. It is very useful for me to learn and understand easily. Thanks for sharing your valuable information and time. Please keep updating...
ReplyDeleteNo.1 CCNA certification Training institute in Chennai|
No.1 CCNA certification Training institute in Velachery|
No.1 CCNA certification Training institute in Kanchipuram|
This is really too useful and have more ideas from yours. keep sharing many techniques and thanks for sharing the information.
ReplyDeleteBlue Prism Training in Chennai | Blue Prism Training Center in Chennai | Blue Prism Certification in Chennai | Blue Prism Training Institute in Chennai
Excellent information with unique content and it is very useful to know about the information based on blogs...
ReplyDeleteBlue Prism Training Center in Chennai | Blue prism Training Center in Velachery | Blue Prism Training Center in Keelkattalai | Blue Prism Training Center in Madipakkam | Blue Prism Training Center in Pallikaranai | Blue Prism Training Center in Guindy
Post is very informative… It helped me with great information so I really believe you will do much better in the future.
ReplyDeleteNo.1 Automation Anywhere Training Institute in Chennai|
No.1 Automation Anywhere Training Institute in Velachery|
No.1 Automation Anywhere Training Institute in Kanchipuram|
This is a nice post in an interesting line of content.Thanks for sharing this article.
ReplyDeleteSelenium Training Institute in Chennai | Selenium Training Center in Keelkattalai | Selenium Certification in Velachery | Selenium Training in Tambaram
This is really too useful and have more ideas from yours. Keep sharing many techniques. Eagerly waiting for your new blog and useful information. Keep doing more.
ReplyDeleteSelenium Training Center in Chennai | Selenium Training Center in Velachery | Selenium Training Center in Taramani | Selenium Training Center in Madipakkam | Selenium Training Center in Pallikaranai
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
ReplyDeleteBlue Prism Exam Center in Chennai | Blue Prism Exam Center in Velachery | Blue Prism Exam Center in Taramani | Blue Prism Exam Center in Keelkattalai | Blue Prism Exam Center in Pallikaranai
I simply wanted to write down a quick word to say thanks to you for those wonderful tips and hints you are showing on this site.
ReplyDeleteBest JAVA Training Institute in Chennai|
Best JAVA Training Institute in Velachery|
Best JAVA Training Institute in Kanchipuram|
Excellent information with unique content and it is very useful to know about the information based on blogs...
ReplyDeleteJava Training Institute in Chennai | Java Training Center in Chennai | Java Training Center in Velachery | Java Course in Velachery | Advanced Java Training in Chennai
Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
ReplyDeleteSoftware Testing Training Center in Chennai | Software Testing Training Centre in Velachary | Software Testing Training Centre in Kancheepuram |
Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.
ReplyDeleteAndroid Training Institute in Chennai | Android Training Institute in Velachery | Android Training Institute in Kanchipuram
Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
ReplyDeleteMatLab Projects Center in Chennai | VLSI Project in Velachery | MatLab Projects Center in Adambakkam
Excellent information with unique content and it is very useful to know about the information based on blogs...
ReplyDeleteJava Training Institute in Chennai | Java Training Center in Velachery | Java Training in Kanchipuram
Very good and informative article. Thanks for sharing such nice article, keep on updating such good articles.
ReplyDeleteSelenium Training Center in Chennai | Selenium Training in Velachery | Selenium Exam Center in Chennai
Your blog is very informative with useful information, thanks a lot for sharing such a wonderful article it’s very useful for me. Keep updating your creative knowledge....
ReplyDeleteSummer Camp for Kids in Chennai |
Summer Camp for Kids in Velachery |
Summer Course in Taramani
Very informative blog. Helps to gain knowledge about new concepts and techniques. Thanks for posting information in this blog
ReplyDeleteSummer Camp in Chennai | Summer Camp Training in Velachery
Good Blog....Thanks for sharing your informative and amazing blog with us, it’s very helpful for everyone.
ReplyDeleteSummer Course Training in Chennai | Summer Course Training in Velachery | Summer Course Training in Kanchipuram
Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.
ReplyDeleteSummer Courses in Chennai | Summer Courses in Taramani
Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
ReplyDeleteBest Vacation Classes Training Institute in Chennai | Best Vacation Classes Training Institute in Velachary | Best vacation Classes Training Institute in Kanchipuram |
Such a cute blog. Thank you for blogging. Keep adding more blogs and Very nicely presented.
ReplyDeleteBest Summer Courses training in Chennai|
Best Summer Courses training in Velachery|
Best Summer Courses training in Kanchipuram|
Good Post…. Thanks for the useful information it’s very useful to read your blog. Keep blogging article like this.
ReplyDeleteVacation Courses in Chennai | Summer Classes in Pallikaranai
Really i enjoyed very much. And this may helpful for lot of peoples. So you are provided such a nice and great article within this.
ReplyDeleteBest Summer Course Training Institute in Chennai | Best Summer Course Training Institute in Velachary | Best Summer Course Training Institute in Kanchipuram |
I have read your blog. It’s very informative and useful blog. You have done really great job. Keep update your blog.
ReplyDeleteBest Summer Classes Training Institute in Chennai | Best Summer Classes Training Institute in Velachary | Best Summer Classes Training Institute in Kanchipuram |
Thank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.
ReplyDeleteVacation Classes in Chennai | Summer Courses in Besant Nagar
Very interesting content which helps me to get the in depth knowledge about the technology.
ReplyDeleteSummer Classes Training in Chennai | Summer Course Training in Velachery | Summer Courses for School Students in Taramani
Really very nice blog information for this one and more technical skill is improved, I like that kind of post.
ReplyDeleteSummer Course Training in Chennai | Summer Course Training in Pallikaranai | Summer Course Training in Pallavaram | Summer Course Training in Madipakkam
Its really informative blog.I found useful. Thanks for sharing
ReplyDeleteSummer courses in Chennai | Summer Courses in Keelkattalai
Thank you so much for sharing such an amazing post with useful information with us. Keep updating such a wonderful blog….
ReplyDeleteBest Vacation Courses in Kanchipuram|
Excellent information with unique content and it is very useful to know about the information based on blogs...
ReplyDeleteSummer courses in Chennai | Summer Classes in Velachery
A million thanks for sharing this.Best summer courses traning for Students in Kanchipuram|
ReplyDeleteGood Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
ReplyDeleteSummer Courses Training Institute in Chennai | Summer Course Training in Keelkattalai | Summer Courses for School Students in Chennai | Vacation Course in Perungudi
Informative blog and it was up to the point describing the information very effectively. Thanks to blog author for wonderful and informative post...
ReplyDeleteVacation Courses in Chennai | Vacation Courses in Pallikaranai
I have read your blog. It’s very informative and useful blog. You have done really great job. Keep update your blog. Thanks..
ReplyDeleteBest Summer Courses Training Institute in Kanchipuram
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyDeleteSummer Course Training in Chennai | Summer Courses for School Students in Chennai | Vacation Course in Velachery | Vacation Classes in Adyar | Summer Courses in Guindy
Very nice article.We have to learning for lot of new information.Best vacation classes traning for Students
ReplyDeletePretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.
ReplyDeleteVacation Courses in Chennai | Vacation Courses in Meenampakkam
Thank you so much for sharing this worth able content with us. It's Very Useful content.
ReplyDeleteBest Vacation Courses in Kanchipuram
Good Blog....Thanks for sharing your informative and amazing blog with us, it’s very helpful for everyone.
ReplyDeleteSummer Course Training in Chennai | Summer Courses for School Students in Chennai | Vacation Course in Perungudi | Vacation Classes in Chrompet | Summer Courses in Palavanthangal
I simply wanted to thank you so much again. I am not sure the things that I might have gone through without the type of hints revealed by you regarding that situation.
ReplyDeleteSummer courses in Chennai | Summer courses in Nanganallur
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge.
ReplyDeleteVacation Courses in Chennai | Vacation Courses in Perungudi
This comment has been removed by the author.
ReplyDelete