์ ์ฒด ๊ธ59 (Python) TypeError: 'str' object cannot be interpreted as an integer ๐ถ ์์ ์์คstr, n = input().strip().split(' ')answer = ""for i in range(n): answer += strprint(answer)์ฝ๋๋ฅผ ์ ๋ ฅํ์ธ์ ๐ถ ์๋ฌ for i in range(n): ์์ ์๋ฌ ๋ฐ์TypeError: 'str' object cannot be interpreted as an integer ๐ถ ๋ด์ฉ str, n = input().strip().split(' ')ex) ์ ๋ ฅ : test 9 str = "test"n = "9" (n์ ์ซ์๋ฅผ ์ ๋ ฅํ์ง๋ง ๋ฌธ์ ํ์ ์)๋ฌธ์์ด์ธ n ๊ฐ์ range(n)์์ ์ ์์ฒ๋ผ ์ฌ์ฉํด์ ์๋ฌ ๋ฐ์ ๐ถ ์กฐ์นn = int(n)๋ค์๊ณผ ๊ฐ์ด ์ ์ ํ์ ์ผ๋ก ๋ณ๊ฒฝ 2024. 11. 24. (ORA-01741) ๊ธธ์ด๊ฐ 0์ธ ์๋ณ์๋ ๋ถ์ ํฉํฉ๋๋ค. ๐ถ ์๋ฌ ORA-01741 : ๊ธธ์ด๊ฐ 0์ธ ์๋ณ์๋ ๋ถ์ ํฉํฉ๋๋ค. ๐ถ ๋ด์ฉ ๊ณต๋ฐฑ ๊ฐ์ ์๋ฐ์ดํ("")๋ก ์ง์ ํ์ฌ ์ปฌ๋ผ์ ์กฐํํ ๋ ๋ฐ์ ๐ถ ์กฐ์น ์ฑ๊ธ์ฟผํฐ('')๋ก ์์ ํ์ฌ ์กฐํํ๋ค. ์๋ฌ : SELECT "" AS TEMP_COL FROM DUAL์กฐ์น : SELECT '' AS TEMP_COL FROM DUAL 2024. 11. 24. (MySQL) Loading class 'com.mysql.jdbc.Driver'. This is deprecated.. ๐ถ ์๋ฌLoading class 'com.mysql.jdbc.Driver' This is deprecated. The new driver class is 'com.mysql.cj.jdbc.Driver'The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary. ๐ถ ๋ด์ฉMySQL ์ฐ๋ ์, ๋ฒ์ ์ ๋ฐ๋ผ Driver ๊ฐ์ด ๋ค๋ฅด๋ค๊ณ ํ๋ค.(MySQL 8 ๋ฏธ๋ง) com.mysql.jdbc.Driver(MySQL 8 ์ด์) com.mysql.cj.jdbc.Driver๐ถ ์กฐ์น ๋ณธ์ธ์ MySQL ๋ฒ์ ์ ๋ง๊ฒ ์ ์ฉํด์ฃผ๋๋ก ํ์ 2024. 11. 24. (WARN) Invocation of destroy method 'close' failed on bean with name 'sqlSession' ๐ถ ์๋ฌ WARN : org.springframework.beans.factory.support.DisposableBeanAdapter -Invocation of destroy method 'close' failed on bean with name 'sqlSession':java.lang.UnsupportedOperationException:Manual close is not allowed over a Spring managed SqlSession ๐ถ ์กฐ์น 'SqlSession' bean์ destroy-method="clearCache"๋ฅผ ์ถ๊ฐํด์ค๋ค. 2024. 11. 24. (Spring Security) Invalid CSRF Token 'null' was found on the request parameter '_csrf' or header 'X-CSRF-TOKEN' ๐ถ ์๋ฌInvalid CSRF Token 'null' was found on the request parameter '_csrf' or header 'X-CSRF-TOKEN ๐ถ ๋ด์ฉ Spring Security๋ form ์ ์ก ์ csrf ๊ณต๊ฒฉ ๋ฐฉ์ด๋ฅผ ํ๊ธฐ ์ํด token ๊ฐ์ ๋ณด๋ด๋ ๊ฒ์๊ท์ ํ๊ณ ์์. (token๊ฐ์ ๋ชป ๋ฐ์์ ๋ฐ์ํ๋ ์๋ฌ) ๐ถ ์กฐ์นโป ์๋ ์์ค ์ถ๊ฐ 2024. 11. 24. ์ด์ 1 ยทยทยท 7 8 9 10 ๋ค์