我使用Spring-MVC的控制器编写了REST服务。为了定义控制器,我使用了注释。一切都适用于未经混淆的罐子。但是对于混淆的罐子,它会给出404作为回应。 我使用RetroGuard在网上搜索任何混淆问题,发现我需要在混淆后保留注释。所以我也通过设置“ .option Annotation ”来尝试,但它仍然无效。 这是代码
@Controller
public class ModelEntitiesController extends CommonExceptionHandler {
private static final long serialVersionUID = -3097468664312037527L;
@SuppressWarnings("unchecked")
@RequestMapping(value = "/Connections", method = RequestMethod.GET)
@ResponseBody
public ArrayList<ConnectionBean> getConnectionList() throws Exception {
// creates an arraylist
return list;
}
}