嗨我有一个控制器需要调用另一个控制器并在另一个控制器完成之前返回一个值。
@EnableAsync
@Controller
public class InitController {
private static final Logger logger = LoggerFactory
.getLogger(InitController.class);
@Value("${init.hostname}")
private String base_url;
@RequestMapping(value = "/rest/init/{id}", method = RequestMethod.GET)
public @ResponseBody
String initialize(@PathVariable String id) throws Fault_Exception {
try {
Future<String> result = customerAsync(id);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
@Async
private Future<String> customerAsync(String id) throws Fault_Exception, IOException{
URL url = new URL(base_url + "rest/customer/" + id);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("Accept", "application/json");
if (conn.getResponseCode() != 200 ) {
throw new RuntimeException("Failed : HTTP error code : "
+ conn.getResponseCode());
}
conn.disconnect();
return new AsyncResult<String>(null);
}
}
现在发生的事情是,当我调用InitController时,它会在返回null之前等待,直到/ rest / customer / controller完成。
答案 0 :(得分:1)
除非您使用 aspectj ,否则Spring不会为私有方法创建代理,因此在您的示例中,同步调用customerAsync
方法。
解决问题的最简单方法是提取customerAsync
方法以分隔@Component
带注释的类。
另外@EnableAsync
注释应该用在@Configuration
类而不是控制器上。