application 객체는 JSP 내장 객체 중 하나이며 웹 애플리케이션 전체 범위에서 데이터 공유가 가능한 전역 저장소 역할을 수행함
웹 애플리케이션이 시작될 때 자동으로 생성되며, 종료될 때 소멸함.

setAttribute(String name, Object value) → 데이터 저장getAttribute(String name) → 데이터 조회removeAttribute(String name) → 데이터 삭제getInitParameter(String name) → web.xml 초기 파라미터 조회