使用中,遇到各种奇葩问题,依依汇总. 1.引用了Subsonic层后,一运行就开始报错,提示未能找到文件!! //引用后,目标框架可能会被改变,subsonic的默认框架是2.0,请检查框架是否一致. 2.执行中报异常,提示“Can't find the SubSonicService in your application's config” //config未能正确初始化,将文件拷贝到解决方案下…
cordova + ionic 使用中碰到的一些问题 No Content-Security-Policy meta tag found. Please add one when using the cordova-plugin-whitelist plugin.解决办法index.html 中添加<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self'…
I make a put request RestTemplate restTemplate = new RestTemplate(); restTemplate.put(new URI("http://localhost:8080/test"), dto); which successfully hits the rest endpoint @RequestMapping(value = "/test", method=RequestMethod.PUT) p…