javacodeimpl.blogspot.com
Open in
urlscan Pro
2a00:1450:4001:803::2001
Public Scan
URL:
http://javacodeimpl.blogspot.com/
Submission: On August 25 via manual from IN — Scanned from DE
Submission: On August 25 via manual from IN — Scanned from DE
Form analysis
3 forms found in the DOMGET /search/max-results=7
<form action="/search/max-results=7" method="get">
<input id="s" name="q" placeholder="Type and hit enter..." type="text">
</form>
<form class="gsc-search-box gsc-search-box-tools" accept-charset="utf-8">
<table cellspacing="0" cellpadding="0" class="gsc-search-box">
<tbody>
<tr>
<td class="gsc-input">
<div class="gsc-input-box" id="gsc-iw-id1">
<table cellspacing="0" cellpadding="0" id="gs_id50" class="gstl_50 gsc-input" style="width: 100%; padding: 0px;">
<tbody>
<tr>
<td id="gs_tti50" class="gsib_a"><input autocomplete="off" type="text" size="10" class="gsc-input" name="search" title="search" id="gsc-i-id1" dir="ltr" spellcheck="false"
style="width: 100%; padding: 0px; border: none; margin: 0px; height: auto; background: url("https://www.google.com/cse/static/images/1x/en/branding.png") left center no-repeat rgb(255, 255, 255); outline: none;"></td>
<td class="gsib_b">
<div class="gsst_b" id="gs_st50" dir="ltr"><a class="gsst_a" href="javascript:void(0)" title="Clear search box" role="button" style="display: none;"><span class="gscb_a" id="gs_cb50" aria-hidden="true">×</span></a></div>
</td>
</tr>
</tbody>
</table>
</div>
</td>
<td class="gsc-search-button"><button class="gsc-search-button gsc-search-button-v2"><svg width="13" height="13" viewBox="0 0 13 13">
<title>search</title>
<path
d="m4.8495 7.8226c0.82666 0 1.5262-0.29146 2.0985-0.87438 0.57232-0.58292 0.86378-1.2877 0.87438-2.1144 0.010599-0.82666-0.28086-1.5262-0.87438-2.0985-0.59352-0.57232-1.293-0.86378-2.0985-0.87438-0.8055-0.010599-1.5103 0.28086-2.1144 0.87438-0.60414 0.59352-0.8956 1.293-0.87438 2.0985 0.021197 0.8055 0.31266 1.5103 0.87438 2.1144 0.56172 0.60414 1.2665 0.8956 2.1144 0.87438zm4.4695 0.2115 3.681 3.6819-1.259 1.284-3.6817-3.7 0.0019784-0.69479-0.090043-0.098846c-0.87973 0.76087-1.92 1.1413-3.1207 1.1413-1.3553 0-2.5025-0.46363-3.4417-1.3909s-1.4088-2.0686-1.4088-3.4239c0-1.3553 0.4696-2.4966 1.4088-3.4239 0.9392-0.92727 2.0864-1.3969 3.4417-1.4088 1.3553-0.011889 2.4906 0.45771 3.406 1.4088 0.9154 0.95107 1.379 2.0924 1.3909 3.4239 0 1.2126-0.38043 2.2588-1.1413 3.1385l0.098834 0.090049z">
</path>
</svg></button></td>
<td class="gsc-clear-button">
<div class="gsc-clear-button" title="clear results"> </div>
</td>
</tr>
</tbody>
</table>
</form>
Name: contact-form —
<form name="contact-form">
<p></p> Name <br>
<input class="contact-form-name" id="ContactForm1_contact-form-name" name="name" size="30" type="text" value="">
<p></p> Email <span style="font-weight: bolder;">*</span>
<br>
<input class="contact-form-email" id="ContactForm1_contact-form-email" name="email" size="30" type="text" value="">
<p></p> Message <span style="font-weight: bolder;">*</span>
<br>
<textarea class="contact-form-email-message" cols="25" id="ContactForm1_contact-form-email-message" name="email-message" rows="5"></textarea>
<p></p>
<input class="contact-form-button contact-form-button-submit" id="ContactForm1_contact-form-submit" type="button" value="Send">
<p></p>
<div style="text-align: center; max-width: 222px; width: 100%">
<p class="contact-form-error-message" id="ContactForm1_contact-form-error-message"></p>
<p class="contact-form-success-message" id="ContactForm1_contact-form-success-message"></p>
</div>
</form>
Text Content
Java @ Desk * Home * About Us * Job * Interview Questions * Contribute * Feedback MenuHomeAbout UsJobInterview QuestionsContributeFeedback JAVA @ DESK * Home MenuHome * Python PYTHON REMOVE LEADING AND TRAILING WHITE SPACE FROM A STRING Apr 21, 2022 * Core Java ATOMICINTEGER AND VOLATILE IN MULTITHREADING JAVA Dec 14, 2020 * Core Java 8 STREAM INTERMEDIATE VS TERMINAL OPERATION IN JAVA 8 Dec 11, 2020 * Core Java 8 HOW TO USE STREAMS IN MAP IN JAVA 8 Dec 06, 2020 THURSDAY, APRIL 21, 2022 PYTHON REMOVE LEADING AND TRAILING WHITE SPACE FROM A STRING javacodeimple 7:21 AM 0 Python remove leading and trailing white space from a String Python have 3 functions to remove the trimmed space, remove leading whitespace and remove trailing whitespace. strip(): Removes leading and trailing whitespace. rstrip(): Removes trailing whitespace. lstrip(): Removes leading whitespace. string = ' Python Trim String ' print('Original String... Read More Share This: Facebook Twitter Google+ Pinterest Linkedin Whatsapp Posted by javacodeimple at 7:21 AM No comments: Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Labels: Python MONDAY, DECEMBER 14, 2020 ATOMICINTEGER AND VOLATILE IN MULTITHREADING JAVA javacodeimple 12:42 AM 0 AtomicInteger and volatile in Multithreading Java In our previous post, we learnt about the volatile keyword in Java. But volatile keyword is not sufficient to guarantee atomicity. Volatility just guarantees the visibility of the variable and NOT atomicity, whereas Synchronization (locking) guarantees both visibility and atomicity. But Synchronization affects... Read More Share This: Facebook Twitter Google+ Pinterest Linkedin Whatsapp Posted by javacodeimple at 12:42 AM No comments: Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Labels: Core Java, Threads FRIDAY, DECEMBER 11, 2020 STREAM INTERMEDIATE VS TERMINAL OPERATION IN JAVA 8 javacodeimple 11:14 PM 0 Stream Intermediate vs Terminal Operation in Java 8 In Java 8, Stream is used to perform operations in pipeline to either get another Stream or Collection or Object. Stream operations are performed on objects that are returning Stream and not on any other type. The Stream operation that returns another Stream is an Intermediary Operation. Hence these can be... Read More Share This: Facebook Twitter Google+ Pinterest Linkedin Whatsapp Posted by javacodeimple at 11:14 PM No comments: Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Labels: Core Java 8, Interview Questions SUNDAY, DECEMBER 6, 2020 HOW TO USE STREAMS IN MAP IN JAVA 8 javacodeimple 6:01 AM 0 How to use Streams in Map in Java 8 Map, unlike, other Collection types is in a Key/Value Format where the Keys are unique in a Map. Using Map.Entry, we can fetch the keySet() as well as entrySet(). Stream cannot be applied directly to a Map since Stream is done on the Collection of Objects. So it is applied to a keySet() or a entrySet() or values() that return... Read More Share This: Facebook Twitter Google+ Pinterest Linkedin Whatsapp Posted by javacodeimple at 6:01 AM No comments: Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Labels: Core Java 8, Java Collection TUESDAY, FEBRUARY 25, 2020 HOW TO GET SUM OF INTEGER OR DOUBLE FIELD FROM A LIST OF POJO JAVA CLASS javacodeimple 6:52 AM 0 How to get sum of Integer or Double field from a List of Pojo Java class This post will demonstrate how to get sum of any particular field, for example, consider a List of Person class with property noOfMangoesEaten which represents how many mangoes an individual has consumed. Using Java 8, we need to find how many mangoes in total have been consumed by all... Read More Share This: Facebook Twitter Google+ Pinterest Linkedin Whatsapp Posted by javacodeimple at 6:52 AM No comments: Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Labels: Core Java 8, Java Collection FRIDAY, JANUARY 25, 2019 SPRING VALIDATOR FRAMEWORK IN JAVA javacodeimple 11:57 PM 0 Spring Validator Framework In Java Spring Validator Framework validates the input Java class properties. Validator class must implement org.springframework.validation.Validator and define the validator rules in the overridden method - public void validate(Object o, Errors errors) This method contains the validation rules. For example, for a Person class validation... Read More Share This: Facebook Twitter Google+ Pinterest Linkedin Whatsapp Posted by javacodeimple at 11:57 PM No comments: Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Labels: Spring MONDAY, DECEMBER 24, 2018 SEMAPHORE IN JAVA WITH REAL TIME EXAMPLE javacodeimple 8:41 PM 1 Semaphore In Java With Real Time Example Semaphore has been introduced in Java 5 to provide access to shared resources in an effective manner. Semaphore controls the number of threads to access shared resources. Semaphore is initialized with the integer count where only that many threads get access to shared resources. Consider a real time example of Washroom... Read More Share This: Facebook Twitter Google+ Pinterest Linkedin Whatsapp Posted by javacodeimple at 8:41 PM 1 comment: Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Labels: Core Java SATURDAY, DECEMBER 15, 2018 CYCLICBARRIER IN JAVA WITH REAL TIME EXAMPLE javacodeimple 10:57 PM 0 CyclicBarrier in Java with Real Time Example CyclicBarrier is a thread syncronization mechanism in which all the threads are requested to wait at a certain point, before all of them move forward. The specific point is called a barrier and threads enter into a wait state at barrier point until all working threads reaches at that point. Once all threads reaches... Read More Share This: Facebook Twitter Google+ Pinterest Linkedin Whatsapp Posted by javacodeimple at 10:57 PM No comments: Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Labels: Core Java Page 1 of 4612345...46Next �Last × search * Recent * Popular * Comments PYTHON REMOVE LEADING AND TRAILING WHITE SPACE FROM A STRING javacodeimpleApr 21, 2022 ATOMICINTEGER AND VOLATILE IN MULTITHREADING JAVA javacodeimpleDec 14, 2020 STREAM INTERMEDIATE VS TERMINAL OPERATION IN JAVA 8 javacodeimpleDec 11, 2020 HOW TO USE STREAMS IN MAP IN JAVA 8 javacodeimpleDec 06, 2020 HOW TO GET SUM OF INTEGER OR DOUBLE FIELD FROM A LIST OF POJO JAVA CLASS javacodeimpleFeb 25, 2020 * How to iterate a List, ArrayList of String in DRL drools DRL provides a from keyword that is used to iterate a list of String or objects. Consider there is a List of String objects, then DRL w... * Implement And Or Conditions in Drools Decision Table Implement And Or Conditions in Drools Decision Table Drools rules can be defined in various formats one of which is in Decision Tables. De... * Difference between Equi Join, Natural Join and Cross Join in sql Different types of Inner Join are : 1) Equi Join 2) Natural Join 3) Cross Join One of the most common interview questions that is bein... * Drools DRL Collect List Example Drools DRL Collect List Example collect in Drools drl is a reserved keyword that is used to define a collection from objects. This is bein... * Spring Rest Template Pass parameters in URL Spring Rest Template Pass parameters in URL Spring RestTemplate - org.springframework.web.client.RestTemplate helps in accessing the third... Subrat"Informative and helpful." Anonymous"What does the kmodule.xml look like?" Anonymous"bad wording. It will never work as ifelse.behavior..." popehiflo"Wow Great!. Will you have an example to do the opp..." Anonymous"Hi, i have a question. İ wonder how can i use list..." FOLLOWERS LABELS Core Java (100) Drools Guvnor (36) Java Collection (27) JSP (19) Core Java 8 (17) MongoDB (16) Spring (16) Threads (15) Sql (14) Interview Questions (13) Design patterns (12) File I/O (11) Hibernate (9) Java 7 (9) Javascript (9) Servlets (8) Eclipse (7) Lambda (6) Exception handling (5) SpringBoot (5) Maven (4) Putty (4) Ajax (3) Angular JS (3) Dependency Injection (3) Guice API (3) Guice Injection (3) Guice Tutorial (3) Hadoop (3) JQuery (3) JSON (3) Serialization (3) Tomcat (3) Web Service (3) Big Data (2) Ehcache (2) MapReduce (2) RestTemplate (2) Java (1) Junit (1) Oracle (1) Struts (1) Xtext (1) CATEGORIES CONTACT FORM Name Email * Message * Created By SoraTemplates | Distributed By Blogger Templates Diese Website verwendet Cookies von Google, um Dienste anzubieten und Zugriffe zu analysieren. Deine IP-Adresse und dein User-Agent werden zusammen mit Messwerten zur Leistung und Sicherheit für Google freigegeben. So können Nutzungsstatistiken generiert, Missbrauchsfälle erkannt und behoben und die Qualität des Dienstes gewährleistet werden.Weitere InformationenOk