No mapping found for [/crls/secureca.crl]

☆樱花仙子☆ 提交于 2019-12-21 02:43:16

问题


This is what appears many times in console of Jetty local webserver when testing J2EE Spring app.

2012-05-03 14:28:14,716 WARN [org.springframework.web.servlet.PageNotFound]
- <No mapping found for HTTP request with URI [/crls/secureca.crl] 
in DispatcherServlet with name 'DefaultServlet'>

I've setup my localhost (OSX) like this:

sudo ipfw add 100 fwd 127.0.0.1,8080 tcp from any to any 80 in

To forward all requests to localhost/127.0.0.1 from :80 to :8080

Does anybody know if this is severe bug/warning and how to get rid of it ?


回答1:


My mistake, I got (and only god knows why) in /private/etc/hosts

127.0.0.1 crl.verisign.com
127.0.0.1 crl.geotrust.com

So if anybody encounters the same issue, simply check your hosts file for crl, verisign, geotrust keywords and disable or delete matching lines.

  • Note that commenting in hosts file works like this
    • #127.0.0.1 crl.geotrust.com


来源:https://stackoverflow.com/questions/10431512/no-mapping-found-for-crls-secureca-crl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!