[Spring,SpringBoot] 디바이스(Mobile,Tablet) 체크
개요 시스템에서 클라이언트의 환경 ( Desktop, Mobile, Tablet 등) 을 구분하여 환경별로 별도의 처리를 하거나 다른 화면을 보여줘야 할 때가 있습니다. 이를 위해 보통 클라이언트의 userAgent 등의 정보를 기반으로 프로그램내에서 별도의 처리를 해야하나 ,Spring ( SpringBoot ) 환경에서는 Spring Mobile Device 모듈을 이용하여 조금 더 간편하게 처리하는 방법을 포스팅합니다. 1. Spring Mobile Device 의존성 추가 먼저 Maven (혹은 gradle) 에 Spring Mobile Device dependency를 추가해줍니다. org.springframework.mobile spring-mobile-device ${org.springfra..