본문 바로가기
Web

apache tiles html loading not complete

by nomore7 2014. 5. 28.


Apahce Tiles를 이용하여 페이지를 로드하는 도중에 페이지 로드가 완료 되지 않았다면 해당 파일이 존재하지 않는지 확인해 봐야한다.


html의 문법오류를 발견한 이유인지 모르지만, 존재하지 않는 파일이 지정된 위치가 아닌 그 위쪽에서 html 로드가 중지 된다.



예를 들면

<script src="/js/jqu


이런 식으로 load를 중지한다.


그러므로 로딩이 완료되지 않은 부분의 script의 오류를 확인해야한다.

-


When you use `Apache Tiles' in web pages, sometimes you could find html page stopped loading abruptly.


In this situation, you need to confirm that all files difined in Tiles.


Whether the browser found out that page has syntax error, html page stop loading before files not founded.


For example,


<script src="/js/jqu


loading stopped like this.


check errors of scripts where loading has missed.