配置restful接口https访问

最近项目中有个需求,把以前的restful接口采用https的形式访问,从网上查了一下资料,经过亲测之后实现了需求。

网上的资料整理之后如下,请阅。

1、按照上篇文章tomcat6.0配置https单向(服务器)加密方法配置服务器https访问。

2、两种方式配置rest接口https方式:

第一种:web.xml中增加


   
        securedapp
        /rest/*
   

   
        CONFIDENTIAL
   


第二种:

1)web.xml中增加


    springSecurityFilterChain
    org.springframework.web.filter.DelegatingFilterProxy
 

 
    springSecurityFilterChain
    /rest/*
 

2)增加spring-security.xml

xmlns="http://www.springframework.org/schema/security"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.1.xsd">














你可能感兴趣的:(java)