내장 html 을 이용하여 hybrid app 을 만드는 경우
ajax 에 의한 서버연동시 아래와 같은 에러 방생
XMLHttpRequest cannot load http://~~~~. Origin null is not allowed by Access-Control-Allow-Origin. at null:1
이 경우는 서버에서 response 시 header 값에 아래처럼 설정해주면 에러 해결된다.
<% response.addHeader("Access-Control-Allow-Origin", "*"); response.addHeader("Access-Control-Allow-Credentials", "true"); %>