私のSpring Rest ControllersがRestyGWTが望む以外の方法でマッピングされているという問題があります。私のアプリケーションは次のとおりです。http://localhost:8080/restgwt/
web.xml によると:
<servlet>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/action-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<url-pattern>/service/*</url-pattern>
</servlet-mapping>
私のSpringサービス/コントローラーはリッスンします:
http://localhost:8080/restgwt/service/test
しかし、私の RestyGWT サービスは次の URL を呼び出します。
http://localhost:8080/restgwt/restgwt/test
また、RestyGWT に変更を指示する方法がわかりませんurl
。助けてください。
web.xml
最も簡単な解決策は、ファイルサーブレットurl-pattern
パラメーターを変更することであることを私は知っています
から:<url-pattern>/service/*</url-pattern>
に:<url-pattern>/restgwt/*</url-pattern>
しかし、私は RestyGWT の動作を変更したいと考えています。
ここに追加のコードを貼り付けます。
GWT 側の TestService
package pl.korbeldaniel.restgwt.client;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import org.fusesource.restygwt.client.MethodCallback;
import org.fusesource.restygwt.client.RestService;
public interface TestService extends RestService {
@GET
@Path("test")
public void getInfo(MethodCallback<TestPojo> test);
}
Spring 側の TestService
package pl.korbeldaniel.restgwt.server;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
@RestController()
public class TestService {
@RequestMapping(value = "test", method = RequestMethod.GET)
public @ResponseBody TestEntity getInfo() {
TestEntity test = new TestEntity();
System.out.println("Hit server for getting _1");
return new TestEntity();
}
}