개발 23

Spring Websocket info 404 에러 나는 경우

웹소켓이 처음 connection 시에 "http://localhost/컨텍스트/echo/info?t=1589183059903" 같은 형태의 URL을 호출해서 연결이 되는데 404에러 나는 경우 해결방법입니다. 스프링에서 호출 URL을 처리 못한다는 것이니, 맵팽 관련된 부분을 확인해야 합니다. 1. web.xml 에서 url-pattern appServlet / 2-1. [java로 설정한 경우] WebSocketConfig.java 에서 EnabledWebSocket 어노테이션, setAloowedOrigins, withSockJS 옵션 확인 package com.chat.config; import org.springframework.beans.factory.annotation.Autowired; i..

개발 2020.05.11

안드로이드 앱 Admob 광고 추가 예제

구글 광고배너인 Admob을 안드로이드 앱에 추가하는 예제 입니다. 1. build.gradle(app)에 추가 1 2 3 dependencies { implementation 'com.google.android.gms:play-services-ads:17.1.1' } Colored by Color Scripter cs 2. Layout 수정 1 2 3 4 5 6 7 8 9 10 cs ※ 발급 받은 Unit ID를 입력해 주세요. 3. Activity 수정 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 import com.google.android.gms.ads.MobileAds; import com.google.android.gms..

개발 2018.12.01

안드로이드 앱 Adfit 광고 추가 예제

다음 광고배너인 Adfit을 안드로이드 앱에 추가하는 예제 입니다. 1. SDK 다운로드 1.1 adfit에서 제공하는 AdfitSDK.aar 파일을 다운로드 1.2 AdfitSDK.aar 파일을 프로젝트의 app/libs에 복사 2. build.gradle(app)에 aar 추가 1 2 3 4 5 6 7 8 9 repositories { flatDir { dirs 'libs' } } dependencies { implementation name: 'AdfitSDK-3.0.5', ext: 'aar' } Colored by Color Scripter cs 3. Layout 수정 1 2 3 4 5 6 7 8 /> Colored by Color Scripter cs 4. Activity 수정 1 2 3 4 5..

개발 2018.12.01