Sandeep G
-
What is Web services ?
Web Services is a service can be written in any supporting languages such as Java, .Net … Web Services establishes communication… Read More
-
SVN installation on Ubuntu
$ sudo apt-get install subversion It requires to need a directory for your repositories, as well as other Subversion-related files.… Read More
-
Exception in thread “main” java.lang.UnsupportedClassVersionError: org/apache/maven/cli/MavenCli : Unsupported major.minor version 51.0
Lets try to understand the Error: As the error show the code is built for Java 7. If you try… Read More
-
How to read data list selected value in JS?
How to have data list ? <input list=”profession” id = “optedProfession” type=”search” placeholder=”Select the profession .” required=””> <datalist id=”profession”> <option value=”Player”… Read More
-
How to update URL param in Javascript
function updateURLParam(uri, key, value) { var re = new RegExp(“([?&])” + key + “=.*?(&|$)”, “i”); var params = uri.indexOf(‘?’) !==… Read More
-
How to generate access token in Spring ?
URL to generate access_token: Type 1: Generation of token using Username & password: http://localhost:8080/<app_name>/oauth/token?grant_type=password&client_id=restapp&client_secret=restapp&username=techie&password=techie@rest Type 2: Generation of token without… Read More
-
What is difference between mvn package & install ?
Its very interesting topic to discuss, those who are working with building tools they will find very helpful. Basically package… Read More
-
How to write a SQL JOIN query based on multiple condition ?
This is tricky to understand, Let me try to explain in simpler way. Here two tables are joining based on… Read More
-
How to write a method in Javascript ?
Method 1: function multiply(x,y) { return (x * y); } console.log(multiply(4,2)); // Outputs: 8 Method 2: var multiply = function(x,y)… Read More
-
How to fetch radio button selected value in Javascript or Jquery ?
Using id attribute : var selectedVal = “”; var selected = $(“#radioDiv input[type=’radio’]:checked”); if (selected.length > 0) { selectedVal =… Read More
