오류모음(14)
-
[MySQL] Loading class 'com.mysql.jdbc.Driver'. This is deprecated.
오류메세지 Loading class 'com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary. mysql driver가 업데이트 되면서 클래스 경로가 바뀐듯 함. jdbc 리플렉션 해올때의 클래스 경로를 com.mysql.cj.jdbc.Driver 로 바꿔주면 해결됨. public static Connection getConnection() { try { Class.forName("com.m..
2022.01.16 -
[MySQL] could not acquire management access for administration
원인 MySQL이 꺼져있어서 그럼 해결 서비스에서 Mysql을 실행시켜 주거나, 자동으로 변경 ※ 자동으로 변경시 컴퓨터 킬때마다 켜져서 리소스 잡아먹음
2021.10.11 -
[JavaScript] 크롬 콘솔에서 Unchecked runtime.lastError: Could not establish connection. Receiving end does not exist.
원인 Video Speed Controller 확장프로그램 때문에 생기는 오류. 해결 해당 확장 프로그램 꺼주면 없어짐
2021.10.11 -
[Android] java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
원인 엑티비티가 AppCompatActivity를 상속받을 때 나타나는 문제. 해결 AppCompatActivity를 Activity로 바꿔주자
2021.10.11 -
[Android] 이미지 높이, 너비제한 안먹힐때
해결 android:adjustViewBounds="true" 해당 이미지 뷰에 위 속성 추가해주면 바로 해결
2021.10.11 -
[opencv-python] error: (-215:Assertion failed)
원인 imread는 이미지를 제대로 읽어오지 못할 경우 None을 반환합니다. 해결 잘못된 경로 입력 or 한글!! 확인 => OpenCV가 유니코드를 못다룸... ㅜㅜ 굳이 한글을 써야한다면 인코딩 필요 def imread_korean_path(path): with open(path, "rb") as fp: numpy_array = np.asarray(bytearray(fp.read()), dtype=np.uint8) return cv2.imdecode(numpy_array, cv2.IMREAD_UNCHANGED) 이런식으로 인코딩
2021.10.11