본문 바로가기

Dev8

JPA- Error 오류 정리. SpringEL expression 오류 내용 ------- Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Mon Sep 25 11:49:17 KST 2023 There was an unexpected error (type=Internal Server Error, status=500). An error happened during template parsing (template: "class path resource [templates/order/orderList.html]") org.thymeleaf.exceptions.TemplateInputException: An error hap.. 2023. 9. 25.
JPA : Error creating bean with name 'entityManagerFactory' defined in class path resource 오류 발생 잘따라했는데... 2023-09-15T09:09:30.156+09:00 ERROR 36325 --- [ restartedMain] o.s.boot.SpringApplication : Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: [PersistenceUnit: default] Unable to build Hiberna.. 2023. 9. 15.
[파이썬] 셔뱅(sheband) 이용하여 파이썬 프로그램 실행 파이썬 프로그램의 맨 상단에 아래의 코드를 삽입하여, 리눅스상에서 바로 실행토록 할 수 있다. #!/usr/bin/env python3 보통 파이썬 프로그램의 실행은 $ python3 test.py 식의 명령을 내린다. 그런데 $ ./test.py 식으로 바로 실행할 수 있게 할 수 있다. 파이썬 상단에 아래의 문구를 추가하면 된다. #!/usr/bin/env python3 물론 실행권한이 부여 되어야 한다. $ chmod 766 test.py 실행은 아래처럼 $ ./test.py 2023. 9. 4.
윈도우에 Git 설치 - Git 사용(1/5) 내가 만든 스프링 프로젝트를 깃허브 또는 gogs저장소에 등록하고 싶었다. 도스명령창을 열어 git init 을 입력하니, 아래와 같았다. 그래서 검색해 보니, git 프로그램을 설치해야 했다. https://git-scm.com/download/win Git - Downloading Package Downloading Git Now What? Now that you have downloaded Git, it's time to start using it. git-scm.com 다운로드 및 설치방법의 자세한 안내는 아래의 블로그 링크로 대신한다. https://devstorylog.blogspot.com/2018/05/windows-git-github.html Windows Git 설치 및 GitHub 활.. 2019. 8. 26.