解决Spring Boot 在localhost域奇怪的404问题(Mac book pro)
在mac系统中,明明url是对的,浏览器也可以打开,一个简单的代码调用就是404,你有没有遇到过?
情景再现
普通的一个controller,返回一个常量。
@GetMapping("/project_metadata/spring-boot") publicStringgetMetadata(){ return"{\"data\":1234}";//这个不重要 }
调用接口的方式:
content=newJSONObject(restTemplate.getForObject(url,String.class));
大部分情况下,返回如下错误,偶尔成功。
2017-08-3114:35:38.867INFO3450---[nio-8080-exec-1].i.w.s.DefaultInitializrMetadataProvider:Fetchingbootmetadatafromhttp://localhost:8080/project_metadata/spring-boot 2017-08-3114:35:38.872WARN3450---[nio-8080-exec-1].i.w.s.DefaultInitializrMetadataProvider:Failedtofetchspringbootmetadata org.springframework.web.client.HttpClientErrorException:404NotFound atorg.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:63)~[spring-web-4.3.10.RELEASE.jar:4.3.10.RELEASE] atorg.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:700)~[spring-web-4.3.10.RELEASE.jar:4.3.10.RELEASE] atorg.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:653)~[spring-web-4.3.10.RELEASE.jar:4.3.10.RELEASE] atorg.springframework.web.client.RestTemplate.execute(RestTemplate.java:613)~[spring-web-4.3.10.RELEASE.jar:4.3.10.RELEASE] atorg.springframework.web.client.RestTemplate.getForObject(RestTemplate.java:287)~[spring-web-4.3.10.RELEASE.jar:4.3.10.RELEASE]
排查
浏览器访问是正常的。
把localhost改为一个私网IP,页面空白,不报错。
到bash中查看:
curl-Ihttp://10.2.10.203:8080/project_metadata/spring-boot HTTP/1.1404NotFound server:ecstatic-1.4.1 Date:Thu,31Aug201707:06:39GMT Connection:keep-alive
什么情况?
再次检查localhost:
curl-Ihttp://localhost:8080/project_metadata/spring-boot HTTP/1.1200 Content-Type:application/json;charset=UTF-8 Content-Length:2683 Date:Thu,31Aug201707:07:28GMT
查看端口:
lsof-i:8080 COMMANDPIDUSERFDTYPEDEVICESIZE/OFFNODENAME node1045pollyduan13uIPv40x992085ef857b1d070t0TCP*:http-alt(LISTEN) java3995pollyduan65uIPv60x992085ef905d994f0t0TCP*:http-alt(LISTEN)
什么鬼?
杀掉node,恢复清明了。
坑在哪里?
有两个进程都在监听8080,但ip错乱。
Macosx一手造成了坑。ubuntu测试无坑,启动http-server的情况下,tomcat根本起不来:
Causedby:java.net.BindException:Addressalreadyinuse atsun.nio.ch.Net.bind0(NativeMethod) atsun.nio.ch.Net.bind(Net.java:433) atsun.nio.ch.Net.bind(Net.java:425) atsun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223) atsun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74) atorg.apache.tomcat.util.net.NioEndpoint.bind(NioEndpoint.java:340) atorg.apache.tomcat.util.net.AbstractEndpoint.init(AbstractEndpoint.java:742) atorg.apache.coyote.AbstractProtocol.init(AbstractProtocol.java:458) atorg.apache.coyote.http11.AbstractHttp11JsseProtocol.init(AbstractHttp11JsseProtocol.java:120) atorg.apache.catalina.connector.Connector.initInternal(Connector.java:960) ...13more
小结:
完整的坑是这样的,我用node起了一个127.0.0.1:8080调js,完了没关。
现在用springboot起8080,竟然成功,但这个坑就这么挖好了。
有两个进程都使用的8080,springboot是localhost:8080,他会精神错乱。因为localhost也是127.0.0.1。
奇了怪的是,既然错乱,启动的时候居然不报端口占用。
那么我们现在要明确,localhost指向127.0.0.1,但二者还是不一样,localhost可以看做一个域名。
为了避免入坑,如果可能尽量不使用localhost,直接使用IP。
Tomcat启动同样的问题。
浏览器一切正常,restTemplate错乱。
总结
以上所述是小编给大家介绍的解决SpringBoot在localhost域奇怪的404问题(Macbookpro),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!