在mac系統(tǒng)中,明明url是對(duì)的,瀏覽器也可以打開(kāi),一個(gè)簡(jiǎn)單的代碼調(diào)用就是404,你有沒(méi)有遇到過(guò)?
在麥積等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專(zhuān)注、極致的服務(wù)理念,為客戶(hù)提供成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作 網(wǎng)站設(shè)計(jì)制作按需求定制開(kāi)發(fā),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),成都營(yíng)銷(xiāo)網(wǎng)站建設(shè),外貿(mào)網(wǎng)站制作,麥積網(wǎng)站建設(shè)費(fèi)用合理。
情景再現(xiàn)
普通的一個(gè)controller,返回一個(gè)常量。
@GetMapping("/project_metadata/spring-boot") public String getMetadata(){ return "{\"data\":1234}";//這個(gè)不重要 }
調(diào)用接口的方式:
content = new JSONObject(restTemplate.getForObject(url, String.class));
大部分情況下,返回如下錯(cuò)誤,偶爾成功。
2017-08-31 14:35:38.867 INFO 3450 --- [nio-8080-exec-1] .i.w.s.DefaultInitializrMetadataProvider : Fetching boot metadata from http://localhost:8080/project_metadata/spring-boot 2017-08-31 14:35:38.872 WARN 3450 --- [nio-8080-exec-1] .i.w.s.DefaultInitializrMetadataProvider : Failed to fetch spring boot metadata org.springframework.web.client.HttpClientErrorException: 404 Not Found at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:63) ~[spring-web-4.3.10.RELEASE.jar:4.3.10.RELEASE] at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:700) ~[spring-web-4.3.10.RELEASE.jar:4.3.10.RELEASE] at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:653) ~[spring-web-4.3.10.RELEASE.jar:4.3.10.RELEASE] at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:613) ~[spring-web-4.3.10.RELEASE.jar:4.3.10.RELEASE] at org.springframework.web.client.RestTemplate.getForObject(RestTemplate.java:287) ~[spring-web-4.3.10.RELEASE.jar:4.3.10.RELEASE]
排查
瀏覽器訪問(wèn)是正常的。
把localhost 改為一個(gè)私網(wǎng)IP,頁(yè)面空白,不報(bào)錯(cuò)。
到 bash中查看:
curl -I http://10.2.10.203:8080/project_metadata/spring-boot HTTP/1.1 404 Not Found server: ecstatic-1.4.1 Date: Thu, 31 Aug 2017 07:06:39 GMT Connection: keep-alive
什么情況?
再次檢查localhost:
curl -I http://localhost:8080/project_metadata/spring-boot HTTP/1.1 200 Content-Type: application/json;charset=UTF-8 Content-Length: 2683 Date: Thu, 31 Aug 2017 07:07:28 GMT
查看端口:
lsof -i:8080 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME node 1045 pollyduan 13u IPv4 0x992085ef857b1d07 0t0 TCP *:http-alt (LISTEN) java 3995 pollyduan 65u IPv6 0x992085ef905d994f 0t0 TCP *:http-alt (LISTEN)
什么鬼?
殺掉node,恢復(fù)清明了。
坑在哪里?
有兩個(gè)進(jìn)程都在監(jiān)聽(tīng)8080,但ip錯(cuò)亂。
Mac osx 一手造成了坑。ubuntu 測(cè)試無(wú)坑,啟動(dòng)http-server的情況下,tomcat根本起不來(lái):
Caused by: java.net.BindException: Address already in use at sun.nio.ch.Net.bind0(Native Method) at sun.nio.ch.Net.bind(Net.java:433) at sun.nio.ch.Net.bind(Net.java:425) at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223) at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74) at org.apache.tomcat.util.net.NioEndpoint.bind(NioEndpoint.java:340) at org.apache.tomcat.util.net.AbstractEndpoint.init(AbstractEndpoint.java:742) at org.apache.coyote.AbstractProtocol.init(AbstractProtocol.java:458) at org.apache.coyote.http11.AbstractHttp11JsseProtocol.init(AbstractHttp11JsseProtocol.java:120) at org.apache.catalina.connector.Connector.initInternal(Connector.java:960) ... 13 more
小結(jié):
完整的坑是這樣的,我用node起了一個(gè)127.0.0.1:8080 調(diào)js,完了沒(méi)關(guān)。
現(xiàn)在用springboot起8080,竟然成功,但這個(gè)坑就這么挖好了。
有兩個(gè)進(jìn)程都使用的8080,spring boot 是localhost:8080 ,他會(huì)精神錯(cuò)亂。因?yàn)閘ocalhost也是127.0.0.1。
奇了怪的是,既然錯(cuò)亂,啟動(dòng)的時(shí)候居然不報(bào)端口占用。
那么我們現(xiàn)在要明確,localhost指向127.0.0.1,但二者還是不一樣,localhost可以看做一個(gè)域名。
為了避免入坑,如果可能盡量不使用localhost,直接使用IP。
Tomcat 啟動(dòng)同樣的問(wèn)題。
瀏覽器一切正常,restTemplate錯(cuò)亂。
總結(jié)
以上所述是小編給大家介紹的解決Spring Boot 在localhost域奇怪的404問(wèn)題(Mac book pro),希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)創(chuàng)新互聯(lián)網(wǎng)站的支持!