SkillAgentSearch skills...

Jcors

A simple filter for enabling Cross Origin Resource Sharing (CORS) on Java Web Apps

Install / Use

/learn @diegossilveira/Jcors
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

h2. Welcome to the home of JCors

JCors is a simple and flexible Java implementation of W3C CORS spec. See more details about CORS "here":http://www.w3.org/TR/cors/

h3. CORS?

CORS stands for Cross-Origin Resource Sharing and it's a new way to enable client-side cross-origin requests. Before CORS it was (almost) impossible to make Ajax requests to another domain because of 'Same Origin Policy' enforced by Javascript. Some newest browsers already implement CORS support in order to make cross-domain client-side requests possible without the need of using hacks (such JSON-P).

h3. And what exactly is JCors?

JCors is a small lib that provides a simple Servlet Filter that enables CORS request handling by existing Java resources. These resources can be anything like webservices (REST / SOAP), Servlets, Struts Actions...

h3. Using JCors

Just add this to your web.xml file:

bc.. <filter> <filter-name>CorsFilter</filter-name> <filter-class>org.jcors.web.CorsEnablingFilter</filter-class> </filter>

<filter-mapping> <filter-name>CorsFilter</filter-name> <url-pattern>/resource/*</url-pattern> </filter-mapping>

p. And optionally, add a file jcors.xml to your classpath Check the jcors-sample.xml "here":https://github.com/diegossilveira/jcors/blob/master/src/main/resources/jcors-sample.xml

h3. And Maven?

Now you can get JCors from Maven Central Repository:

bc.. <dependency> <groupId>org.jcors</groupId> <artifactId>jcors</artifactId> <version>1.2</version> </dependency>

h3. Help Me!

There are some things to improve on this project, can you help me?

  • Improve unit tests
  • Servlet 3.0 API support
  • Request Headers validation

h3. About me

Email me: diegossilveira at gmail.com

Follow me: "@diegossilveira":http://twitter.com/diegossilveira

Related Skills

View on GitHub
GitHub Stars4
CategoryDevelopment
Updated3y ago
Forks3

Languages

Java

Security Score

70/100

Audited on Apr 14, 2022

No findings