콘솔 에러
Mixed Content: The page at '...' was loaded over HTTPS,
but requested an insecure script
'http://www.google.com/jsapi'.
This request has been blocked; the content must be served over HTTPS.
원인 :
https 사이트에서 http 사이트 요청 시 발생하는 보안 문제
해결 :
해당 url을 호출하는 JSP에서 http를 https로 변경해주고 해결했다.
<script type="text/javascript" src="http://www.google.com/jsapi"></script>