web.xml 샘플
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="my_api" version="3.0"> ...
log4j.properties 샘플코드
# Log4j Setting file log4j.rootLogger=INFO, console # log4j init message display log4j.debug=false # Console log log4j.appender.console=org.apache.log4j.ConsoleAppender log4j.appender.console.layout=org.apache.log4j.PatternLayout log4j.appender.console.layout.ConversionPattern=%-5p: %m%n # Daily file log for daily...
[RuntimeException]must implement OnFragmentInteractionListener
프레그먼트를 호출하면서 발생한 오류이다.API 28 버전부터 프레그먼트 사용 방식이 바뀐 듯 하다. java.lang.RuntimeException: ddolcat.vibration.MainActivity@25e7a51 must implement OnFragmentInteractionListener at ddolcat.vibration.VibrationFragment.onAttach(VibrationFragment.java:396) at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1404) at android.support.v4.app.FragmentTransition.addToFirstInLastOut(FragmentTransition.java:1195) at android.support.v4.app.FragmentTransition.calculateFragments(FragmentTransition.java:1078)...
[Android] Fragment 사용법
■ 메인 액티비티에서 호출방법 : targetSdkVersion 26 일 때 Fragment fragment = new WebViewFragment(); //Fragment 호출시 파라미터 값을 전달 하고 싶을 경우 Bundle 클래스 사용Bundle args...
[SK텔레콤 스팸신고 #8239] 코로나19 추가 접종 사전 예약 사칭 문자 주의 안내
114로 부터 사칭문자 주의 문자를 받았습니다. 주의하세요. 출처 : SK 114 정부 기관 및 코로나19 추가 접종 사전 예약 사칭 문자 주의 안내 [Web발신][SKT] 정부...
안드로이드(Android) Listview 페이징 처리 방법(setOnScrollListener)
우리가 안드로이드 앱 개발을 할때 리스트를 가져오는 경우가 있다. 이때 리스트 하단에 도달하였을 때 새로운 데이터를 불러와 리스트 아래쪽 붙여줘야하는 한다. Listview에서 스크롤을 통한 페이징...
Caused by: org.gradle.api.GradleException: Lint found fatal errors while assembling a release target.
org.gradle.api.tasks.TaskExecutionException: Execution failed for task ‘:app:lintVitalRelease’. at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:100) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:70) at org.gradle.api.internal.tasks.execution.OutputDirectoryCreatingTaskExecuter.execute(OutputDirectoryCreatingTaskExecuter.java:51) at org.gradle.api.internal.tasks.execution.SkipUpToDateTaskExecuter.execute(SkipUpToDateTaskExecuter.java:62) at org.gradle.api.internal.tasks.execution.ResolveTaskOutputCachingStateExecuter.execute(ResolveTaskOutputCachingStateExecuter.java:54) at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:60) at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:97) at org.gradle.api.internal.tasks.execution.CleanupStaleOutputsExecuter.execute(CleanupStaleOutputsExecuter.java:87) at org.gradle.api.internal.tasks.execution.ResolveTaskArtifactStateTaskExecuter.execute(ResolveTaskArtifactStateTaskExecuter.java:52) at...
Android (안드로이드) EditText 읽기전용 (readonly) 처리 하는 방법
EditText 위젯 사용시 읽기 전용으로 변경하기 xml 레이아웃에서 처리하는 방법 : 속성값 enabled를 false로 주시면 됩니다. <EditText android:id="@+id/myinfo_input_address" android:layout_width="match_parent" android:layout_height="@dimen/myinfo_modify_info_input_height" android:layout_marginTop="@dimen/myinfo_modify_address_default_margin_top" android:paddingLeft="@dimen/myinfo_modify_address_input_padding_left" android:inputType="textMultiLine" android:hint="@string/myinfo_input_address" android:lines="3"...
[Vue.js] TypeError: handler.call is not a function 오류가 발생할 때 해결하는 방법
기존에 없던 오류가 발생하였다. 오류 내용은 다음과 같다. TypeError: handler.call is not a function TypeError: handler.call is not a function at invokeWithErrorHandling (vue.runtime.esm.js?2b0e:1854) at callHook (vue.runtime.esm.js?2b0e:4219) at Object.insert (vue.runtime.esm.js?2b0e:3139) at...
[MS-SQL] 컬럼 변경
컬럼 변경 ALTER TABLE [테이블명] ALTER COLUMN [컬럼명] [속성] ALTER TABLE 테이블명 ALTER COLUMN 컬럼명 NVARCHAR(100) NULL 컬럼 추가 ALTER TABLE 테이블명 ADD 컬럼명 NVARCHAR(100) NULL 테이블 삭제...