일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MVC
- 백준
- SpringBoot
- 입출력
- Controller
- 디자인패턴
- 자취
- 코딩테스트
- React
- gradle
- Project
- AWS
- Java
- 팀프로젝트
- 취준생
- 자바
- 공유DB
- 프로젝트
- javascript
- ps
- spring boot
- JDK
- coding test
- 코테
- 스프링
- JPA
- jdk11
- spring
- IntelliJ
- MariaDB
- Today
- Total
목록Project (3)
Tech Collection
Not supported for DML operations [UPDATE 쿼리문] 이런 경고가 나올 때 Repository에서 @Modifying 을 붙여주면 된다.
IntelliJ, JDK 11, Thymeleaf 3.*, spring boot 2.4.1, MariaDB 2021/02/18 - [Project/Spring Boot] - [Thymeleaf] 기본 문법 [Thymeleaf] 기본 문법 1. 해당 페이지에 thymeleaf 적용 2. 링크 / 경로 지정 내용 이렇게만 알아도 반은 한다.................... 아마도.............. jinny-1st.tistory.com 1. Thymeleaf 를 gradle dependency에 추가 > build.gradle dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementa..
Test Code 실행 에러 - 1 > IntelliJ, Spring Boot, Gradle, JDK 11 1. 설정 바꿔주기 더보기 중간 Run tests using 을 IntelliJ로 변경! 2. MySQL / MariaDB 등 관계형 데이터베이스를 쓴다면 더보기 @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; 위와 같이 Repository를 설정할 때 GenerationType.IDENTITY 을 통해 id가 자동 생성되어 저장되게 설정했는데, 막상 DB 테이블의 id가 auto increment 설정이 안되어 있을 수도 있다. alter table review.member modify id bigint not nu..