본문 바로가기

Spring

(7)
[스프링부트]H2DB JDBC 설정 시 주의할 점 1 2 3 xmlns:jdbc="http://www.springframework.org/schema/jdbc" xsi:schemaLocation="http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd "> cs 태그를 사용하기 위해서는 위와 같은 네임스페이스가 선언되어있어야 한다. 태그에 의해 만들어지는 EmbeddedDatabase 타입 빈은 스프링 커네팅너가 종료될 때 자동으로 shutdown()메소드가 호출되도록 설정되어 있다. 따라서 내장형 DB를 종료시키기 위한 별도의 코드나 설정은 필요하지 않다.
[스프링부트] 2.X 버전. 리액트 개발을 위한 마리아디비 설정 https://mariadb.com/downloads/ 에서 다운로드 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 > mysql -u root -p Enter password **** (demo) > use mysql > create database mariadb; > show databases; > create user 'mariadb'@'localhost' identified by 'mariadb'; > grant all privileges on mariadb.* to mariadb@localhost; > flush privileges; > exit; > mysql -u root -p Enter password **** (demo) > use mysql > select ..
[스프링부트] 에러 : 기본 클래스 로드 실패 우클릭 Apply 클릭 !!
[스프링] 마이바티스 에러 : invalid bound statement (not found) https://blog.woniper.net/247 참조 [MyBatis] Invalid bound statement (not found): 에러 Invalid bound statement (not found): 에러가 발생하는 이유가 몇 가지 있는데 아무리 찾아봐도 내 문제는 해결되지 않았다. 에러 원인은 아래와 같다. Mapper Interface와 mapping되는 xml파일에 오타가 있는 경.. blog.woniper.net 특히 ... 참조 블로그 중에 이 부분을 주의 할 것 !!
[스프링부트] 메이븐 에러 : No compiler is provided in this environment No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[스프링부트] 2.x 버전에서 메이븐 설정 pom.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 4.0.0 com.mexico web 0.0.1-SNAPSHOT jar holywood Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 2.0.6.RELEASE..
[스프링부트] JPA, MySQL, AWS-RDS 설정하기 application.yml 1234567891011spring: jpa: database-platform: org.hibernate.dialect.MySQLDialect show-sql: true hibernate: ddl-auto: update datasource: url: jdbc:mariadb://demo....14le0.ap-northeast-2.rds.amazonaws.com:3306/travel driver-class-name: org.mariadb.jdbc.Driver username: demo password: demonstrationColored by Color Scriptercs