반응형 백엔드159 [TIBERO] JDBC-90401:Connection refused by server 티베로를 테스트한다고 깔았다 지웠다 반복하다 보면 티베로 기본 포트인 8629가 사용 불가하다고 뜨거나 데이터베이스를 설치하다가 데이터베이스 생성에 실패하는 경우가 발생한다. 해결방법은 DB 설치 시 생기는 tbdown 파일 실행해서 2번 눌러주면 된다. DB Name을 달리 했다면 그 DB는 초기화가 안되므로 그 DB 이름으로 설치해서 생긴 tbdown 배치로 지워줘야 한다. 2021. 1. 12. SpringBoot Dependency 버전 맞추는 방법 내가 쓰는 SpringBoot 버전에 맞는 라이브러리 버전을 찾고 싶다. 1. https://spring.io/ Spring makes Java simple. Level up your Java code and explore what Spring can do for you. spring.io 2. Reference Doc. 3. Dependency Versions 4. 원하는 Dependency 찾기 2021. 1. 12. Assembly.Load 시 FileNotFoundException 발생 기존 프로젝트를 복제 하면서 네임스페이스가 변경됐다. 모두바꾸기로 일괄 변경 후 프로젝트 명도 변경해서 깔끔하게 다 처리했는데 프로그램 실행 시 Assembly.Load(어셈블리명) 에서 에러가 난다. 프로젝트로 솔루션에 포함되어있는데 그걸 못찾고있다. 해결 방법 해당 프로젝트에서 마우스 오른쪽 클릭 - 속성 선택 어셈블리 이름과 네임스페이스를 변경한 이름으로 맞춰준다. 2021. 1. 4. System.BadImageFormatException https://bigenergy.tistory.com/673 C# System.BadImageFormatException 발생원인과 해결방법 어느날 갑자기 멀쩡하게 컴파일 되던 프로젝트가 이상한 오류를 뱉어내더군요. 처음보는 에러였습니다. System.BadImageFormatException 파일이나 어셈블리 **.Framework... 여기에 종속되어 있는 파일이나 bigenergy.tistory.com 2020. 12. 30. [JPA] 영속성 전이 casecade 속성 https://stackoverflow.com/questions/13027214/what-is-the-meaning-of-the-cascadetype-all-for-a-manytoone-jpa-association What is the meaning of the CascadeType.ALL for a @ManyToOne JPA association I think I misunderstood the meaning of cascading in the context of a @ManyToOne relationship. The case: public class User { @OneToMany(fetch = FetchType.EAGER) protected Set stackoverflow.com cascade는 관.. 2020. 12. 26. Thymeleaf 템플릿 적용하기 1. pom.xml에 dependency 추가 org.springframework.boot spring-boot-starter-thymeleaf nz.net.ultraq.thymeleaf thymeleaf-layout-dialect 2. Thymeleaf Configuration 만들기 @Configuration public class ThymeleafViewResolverConfig { @Bean public SpringResourceTemplateResolver templateResolver() { SpringResourceTemplateResolver templateResolver = new SpringResourceTemplateResolver(); templateResolver.setPrefix.. 2020. 12. 20. 이전 1 ··· 3 4 5 6 7 8 9 ··· 27 다음 반응형