0
我有兩個項目在其中設置Springboot,現在,我將在eclipse上運行這兩個springboot,我設置了端口8888爲projectB。 這是我使用RequestMapping的projectB控制器。如何從本地url完全得到回覆http:// localhost:8888/
@RequestMapping(value = "test", method = RequestMethod.GET)
public @ResponseBody String test() {
return "testtesttest";
}
我需要從jquery方法調用一個url,該url是從projectB中的控制器讀取respose。
我該怎麼稱呼這個網址? 我試過「http://localhost:8888/test」和「http://127.0.0.1:8888/test」 但我沒有從響應中得到任何答案。
請給我這個
非常讚賞的解決方案。
謝謝你的回覆,我會在你的回覆中保留你的回答。實際上,我在我的控制器上添加了CrossOrigin註釋,似乎解決了這個問題。 – Bmegod
不客氣! –