我正在尝试为响应设置'Access-Control-Allow-Origin:*'标头。但是,标题不存在。我究竟做错了什么?
public class JsonApplication extends Application
{
private static final String SERVER_URL = "http://localhost:8111";
public static void main(String[] args) throws Exception
{
Server testServer = new Server(Protocol.HTTP, 8111);
JsonApplication jsonApplication = new JsonApplication();
CorsService corsService = new CorsService();
corsService.setAllowedOrigins( new HashSet(Arrays.asList("*")));
corsService.setAllowedCredentials(true);
jsonApplication.getServices().add( corsService );
testServer.setNext( jsonApplication );
testServer.start();
}
@Override
public Restlet createInboundRoot()
{
Router router = new Router( getContext() );
router.attach( SERVER_URL + "/", RootResource.class );
return router;
}
}
我检查了org.restlet.engine.application.CorsResponseHelper的源代码,它包含以下代码:
public void addCorsResponseHeaders(Request request, Response response) {
String origin = request.getHeaders().getFirstValue("Origin", true);
if (origin == null) {
// Not a CORS request
return;
}
...
}
因此,当前的CORS实现似乎不支持从本地html文件发出的请求,因为在这种情况下origin == null。
我在我的servlet应用程序中添加了一些日志记录:
JsonApplication::createInboundRoot()
16:26 MyCorsService()
16:26 myCorsService = wwwdbase.rest.cors.MyCorsService@6e1b241d
16:26 MyCorsService::setAllowedOrigins(), [*]
16:26 services: [org.restlet.service.TunnelService@4c88fe62,
org.restlet.service.StatusService@68349a5b,
org.restlet.service.DecoderService@77cfd8d3,
org.restlet.service.EncoderService@40c331fb,
org.restlet.service.RangeService@4bb3bc6f,
org.restlet.service.ConnectorService@7990100,
org.restlet.service.ConnegService@e194860,
org.restlet.service.ConverterService@578cfcb1,
org.restlet.service.MetadataService@18a62eb,
org.restlet.service.TaskService@4ed4f2db,
wwwdbase.rest.cors.MyCorsService@6e1b241d]
我们可以看到MyCorsService可用。但是,它从未被servlet框架调用。另一方面,如果我从IDE运行服务(Java SE版本),则调用MyCorsService。为什么这些案例表现不一样?
部分解决方案:我设法通过更改org.restlet.engine.header.HeaderUtils中的代码来添加allow origin标头
if (response.getAccessControlAllowOrigin() != null)
{
addHeader(HeaderConstants.HEADER_ACCESS_CONTROL_ALLOW_ORIGIN,
response.getAccessControlAllowOrigin(), headers);
}
到
if (response.getAccessControlAllowOrigin() != null)
{
addHeader(HeaderConstants.HEADER_ACCESS_CONTROL_ALLOW_ORIGIN,
response.getAccessControlAllowOrigin(), headers);
}
else
{
// --- Add in any case!
//
response.setAccessControlAllowOrigin( "*" );
addHeader(HeaderConstants.HEADER_ACCESS_CONTROL_ALLOW_ORIGIN,
response.getAccessControlAllowOrigin(), headers);
}
然而,为什么Tomcat中的servlet框架没有调用cors服务的问题的答案仍然未知...
答案 0 :(得分:2)
实际上,您已正确配置了Restlet的CORS服务; - )
在CORS的上下文中,有两种请求:
GET
,HEAD
和某些POST
的情况时。在这种情况下,在执行跨域请求时不需要CORS头。因此,如果你只是做一个方法GET
,那么你什么也看不见是正常的。尝试使用带有JSON内容的方法POST
,您将看到CORS标题。
有关详细信息,请查看此链接:
<强>被修改强>
我为您的问题做了更完整的测试。我在不同的端口上启动了两个Restlet服务器(8182用于使用AJAX访问资源,8183用于访问资源的JS应用程序)。
第一个配置了您的代码:
CorsService corsService = new CorsService();
corsService.setAllowedOrigins(new HashSet(Arrays.asList("*")));
corsService.setAllowedCredentials(true);
RestletApplication application = new RestletApplication();
application.getServices().add(corsService);
component.getDefaultHost().attachDefault(application);
其中的服务器资源很简单:
public class MyServerResource extends ServerResource {
@Get
public TestBean ping() {
TestBean bean = new TestBean();
bean.setMessage("pong");
return bean;
}
}
第二个应用程序仅使用Restlet目录来提供静态内容:
@Override
public Restlet createInboundRoot() {
Router router = new Router(getContext());
router.attach("/static", new Directory(
getContext(), "clap:///test/static"));
return router;
}
除了JQuery库,我添加了以下HTML文件:
<html>
<head>
<script type="text/javascript" src="/static/jquery-1.11.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#id1').click(function() {
$.ajax({
url : 'http://localhost:8182/ping',
type : 'GET',
success : function(result, status){
console.log('ok = '+result);
},
error : function(result, status, error){
console.log('error');
},
complete : function(result, status){
console.log('complete');
}
});
});
});
</script>
</head>
<body>
<div id="id1">Click</div>
</body>
</html>
以下是我点击标题级别“点击”按钮时的内容:
// Request
Accept */*
Accept-Encoding gzip, deflate
Accept-Language fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3
Host localhost:8182
Origin http://localhost:8183
Referer http://localhost:8183/static/test.html
User-Agent Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0
// Response
Accept-Ranges bytes
Access-Control-Allow-Cred... true
Access-Control-Allow-Orig... http://localhost:8183
Content-Type application/json
Date Fri, 13 Mar 2015 09:16:48 GMT, Fri, 13 Mar 2015 09:16:48 GMT
Server Restlet-Framework/2.3.1
Transfer-Encoding chunked
Vary Accept-Charset, Accept-Encoding, Accept-Language, Accept
如您所见,CORS存在; - )
希望它可以帮到你, 亨利