Spring MVC Checkbox And Checkboxes Form Tag Example
In this post we’ll see how to use checkbox and checkboxes provided by the form tag in the Spring MVC framework.Technologies usedFollowing is the list of tools used for the Spring MVC checkbox and...
View ArticleSpring MVC Radiobutton And Radiobuttons Form Tag Example
In this post we’ll see how to use radiobutton and radiobuttons tag provided by the form tag library in the Spring MVC framework.Spring MVC Project structure using MavenPlease refer Spring Web MVC...
View ArticleSpring MVC Dropdown Example Using Select, Option And Options Tag
In this post we’ll see how to show dropdown box in a Spring MVC application using select, option and options tag provided by the form tag library in the Spring MVC framework.Spring MVC Project...
View ArticleSpring MVC Configuring Multiple View Resolvers Example
In this post we’ll see how to configure multiple view resolvers with in Spring MVC application. In Spring MVC view resolver is used to resolve the view name without actually hardcoding the view file....
View ArticleTuple in Python With Examples
Tuple in Python is one of the sequence data type that can store a group of elements. Tuple is similar to Python list with one notable difference that the Tuple is immutable where as list is...
View ArticleNamed Tuple in Python
In this post we’ll see what are named tuples in Python and how to use them.In a tuple you can store arbitrary elements and access them using index. Now, consider the scenario where tuple is storing a...
View ArticleJava Stream API Tutorial
If we have to point out the most important inclusion in Java 8 apart from lambda expressions then that has to be Stream API in Java. Stream API usually works in conjunction with lambda expression and...
View ArticleJava Stream API Examples
In the post Java Stream API Tutorial we have already got an introduction of Stream API. A Stream can be defined as a sequence of elements supporting sequential and parallel aggregate operations. Using...
View ArticlePrimitive Type Streams in Java Stream API
If you have gone through the post Stream API in Java 8 one thing you would have noticed is that Streams work on object references. They can’t work on primitive types because of that many times people...
View ArticleReduction Operations in Java Stream API
Stream API contains many terminal operations (such as average, sum, min, max, and count) that return one value by combining the contents of a stream. These operations are called reduction operations in...
View ArticleParallel Stream in Java Stream API
You can execute streams in serial or in parallel. When a stream executes in parallel, the Java runtime partitions the stream into multiple sub-streams. Aggregate operations iterate over and process...
View ArticleMap Operation in Java Stream API
Map operations in Java Stream API, as the name suggests, are used to do the element mapping from one stream to another. Map operation will return a stream consisting of the results of applying the...
View Articlecollect() Method And Collectors Class in Java Stream API
Collect method in Java Stream API is used to perform a mutable reduction operation on the element of the given stream.A mutable reduction operation can be defined as an operation that accumulates input...
View ArticleJava Stream flatMap() Method
flatMap() in Java brings two features; map operations in Java stream API and flattening a nested structure together.In mapping operation in Java stream the given function is applied to all the elements...
View ArticleSpliterator in Java
Spliterator in Java just like iterator, is used for traversing the elements of a source. The source of elements covered by a Spliterator could be, for example, an array, a Collection, an IO channel, or...
View ArticleJava Stream API Interview Questions And Answers
In this post Java Stream API Interview Questions and answers are listed. This compilation will help the Java developers in preparing for their interviews.What is Stream API in Java?Stream API is added...
View ArticleHow to Pass Command Line Arguments in Eclipse
Eclipse is one of the most preferred IDE for Java/JEE development. Eclipse IDE provides various options like running the application from the IDE, providing arguments to your Java program, debugging...
View ArticleCreating a Maven Project in Eclipse
This tutorial shows how to create a Maven project in Eclipse. Here I am using the maven Eclipse plugin. These days Eclipse comes pre-configured with maven plugin and you don't need to download and set...
View ArticleAdding Tomcat Server to Eclipse
This post shows how you can add Apache Tomcat server to the Eclipse IDE and start and stop it from Eclipse IDE itself.Downloading Apache Tomcat ServerIf you don’t have Tomcat server yet you can...
View ArticlePython Exception Handling Tutorial
This Python exception handling tutorial gives an overview of Python exceptions and how to handle exceptions using Python exception handling. Types of errorsErrors in your Python programs can be...
View Article