Cross-Origin Configuration for Vue.js and Spring Boot Applications

Understanding Cross-Origin Resource Sharing (CORS) Cross-origin requests occur when a web application at one origin attempts to communicate with a server at a different origin. An origin is defined by the combination of protocol (http/https), domain name, and port number. The Same-Origin Policy, a fundamental security mechanism in web browsers, ...

Posted on Thu, 16 Jul 2026 17:22:59 +0000 by bigc79

Updating Cross-Origin Frame Sources Dynamically

Migrating legacy web applications into modern architectures often involves embedding older interfaces within frames or iframes. A common architectural pattern uses a left-sided navigation panel to control the content displayed in a right-sided frame. How ever, when the navigation panel and the content frame belong to different origins, attempti ...

Posted on Fri, 26 Jun 2026 16:53:58 +0000 by docmattman

Implementing Cross-Origin Resource Sharing (CORS) in Spring MVC

Introduction to CORS When discussing AJAX cross-domain requests, many developers first think of JSONP. JSONP has been widely used for years, but it has significant limitations. It works by injecting a <script> tag into the page to execute remote JavaScript, which can lead to XSS vulnerabilities if the source is compromised. Additionally, ...

Posted on Sat, 09 May 2026 06:27:51 +0000 by darkhappy