본문 바로가기

분류 전체보기

(217)
[error] 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. Problem Loading class `com.mysql.jdbc.Driver'. This is deprecated. cause 버전 변경으로인해 class 변경됨. resolving log4jdbc.log4j2.properties 파일에 설정추가 #log4jdbc drive class log4jdbc.drivers=com.mysql.cj.jdbc.Driver log4jdbc.auto.load.popular.drivers=false https://goddaehee.tistory.com/324 [JAVA] Loading class 'com.mysql.jdbc.Driver'. This is deprecated. The new driver class is 'com.mysql.cj.jdbc.Driver'. [..
[error/session] No primary or single unique constructor found for interface javax.servlet.http.HttpSession Problem No primary or single unique constructor found for interface javax.servlet.http.HttpSession cause session으로 로그인 시 url 타도록 contoller 기능 구현 중에 에러 발생. Spring Tool Suite 4 Version: 4.15.3.RELEASE 사용하였으나 import javax.servlet.http.HttpSession; 사용 resolving 공식 문서에 따르면 3.x버전부터는 jakarta package 사용해야 한다고 함. => import jakarta.servlet.http.HttpSession; 로 변경 https://spring.io/blog/2022/05/24/preparing..
jtsl jsp session 세션 sessionScope HttpSession session = request.getSession(true); session.setAttribute("ID", "admin1234");
ssl ssl 인증서 발급 후 적용하기 OpenSSL https://namjackson.tistory.com/25 [SSL]HTTPS 통신을 위한 Tomcat SSL 설정하기 HTTPS 및 SSL 암호화 통신을 위해 Tomcat 설정을 해보자 일단 HTTPS, SSL을 왜 사용할까? 링크를 통해 어떠한 사이트에 접속하게된다. 이 사이트가 아무 문제가 없는 사이트라면, 상관이없지만, 개인정 namjackson.tistory.com https://www.sslcert.co.kr/guides/Spring-Boot-SSL-Certificate-Install Spring Boot SSL 인증서 설치/설정/적용 가이드 - SecureSign Spring Boot SSL 인증서 설치/설정/적용 가이드 - SecureSign www.sslcert.co.kr https:/..
압축 폴더 압축 풀기 오류 해결 방법 -> 폴더의 이름을 변경한다. ex) contents.zip 일 경우 -> contentsz.zip 등 폴더명으로 이름 변경하면 압축 풀림.
[error es6 js] Stacktrace:] with root causejakarta.el.ELException: Function [:parseInt] not found Problem Stacktrace:] with root causejakarta.el.ELException: Function [:parseInt] not found cause javascript es6버전의 Template literals 사용 시 `` 안의 ${} 를 인식하지 못함 백틱, Backtick resolving \${} 이렇게 사용할 것. 예시) \${page}
개념 용어 정리글 OSS Open Source Software 소스코드가 공개되어 있고, 자유로운 재배포가 허용되면서 저작권자의 권익을 보호할 수 있도록 제도화된 소프트웨어. 일반 대중의 공동 연구로 개발, 시험 및 개선되며, 미래의 공동 연구를 보장하기 위하여 소스 코드를 반드시 공유되어야 하는 사상을 가진 소프트웨어 BSS Business support systems = 비즈니스 인터페이스라고도 한다. 비즈니스지원 시스템. 통신 조직이 모든 고객 대면 활동을 관리하고 간소화하는 데 도움이 되는 다양한 소프트웨어 프로그램. 서비스 주문부터 청구 문제 해결 및 구독 업그레이드에 이르기까지 통신 공급자와 고객 간의 손쉬운 상호작용이 가능하다. ASP Active Server page MS사에서 동적으로 웹페이지를 생성하기 ..
mysql 사용자 조회 MySQL 8.0 Command line Client 접속 비밀번호 입력 후 use mysql select user, host from user;