Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View wildoctopus's full-sized avatar
🎯
Focus

Alok Pandey wildoctopus

🎯
Focus
View GitHub Profile
@wildoctopus
wildoctopus / CORS Filter
Created April 16, 2018 05:30
How to fix the CORS issue on backend side , java Springboot App (Handling Simple CORS requests)
//Contents from https://spring.io/understanding/CORS
In the simplest scenario, cross-origin communications starts with a client making a GET, POST, or HEAD request against a resource on the server.
In this scenario, the content type of a POST request is limited to application/x-www-form-urlencoded, multipart/form-data, or text/plain. The request includes an Origin header that indicates the origin of the client code.
The server will consider the request's Origin and either allow or disallow the request. If the server allows the request, then it will respond with the requested resource and an Access-Control-Allow-Origin header in the response. This header will indicate to the client which client origins will be allowed to access the resource. Assuming that the Access-Control-Allow-Origin header matches the request's Origin, the browser will allow the request.
On the other hand, if Access-Control-Allow-Origin is missing in the response or if it doesn't match the request's Origin, the browser will disallow th
@wildoctopus
wildoctopus / grunt-war.js
Created April 3, 2018 16:31
Snippet of code using Grunt to Generate .war file to deploy on any Tomcat server
// Save this snippet as grunt-war.js and run with "grunt --gruntfile grunt-war.js war" at the command line.
// Assumes simple layout:
// -project
// --build (The folder where the generated grunt-magic.war file will go)
// --src (all the source code, html, etc)
// --- index.html (The file name must match up with the webxml_welcome: property below)
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-war' );
var taskConfig = {