With Computer/Spring Starter Project
-
[intelliJ] TDD에서 실행쿼리 형태 확인With Computer/Spring Starter Project 2020. 2. 7. 16:53
[책] 스프링부트와 AWS로 혼자 구현하는 웹서비스 resources 디렉토리 아래에 application.properties 파일 생성 (책은 아이콘이 다른거같은데, 나는 걍 file로 생성해줌) spring.jpa.show_sql=true 변경전 Hibernate: create table posts (id bigint generated by default as identity, author varchar(255), content TEXT not null, title varchar(500) not null, primary key (id)) H2 쿼리문법 적용됨 - MySQL로 변경원할경우, application.properties에서 추가 설정 spring.jpa.properties.hibernate...
-
[intelliJ] Execution failed for task ':compileJava'.With Computer/Spring Starter Project 2020. 1. 31. 17:32
Testing started at 오후 4:37 ... > Task :cleanTest > Task :compileJava C:\Users\LJ\IdeaProjects\freelec-springboot2-webservice\src\main\java\com\zozo\book\springboot\web\web\dto\HelloResponseDto.java:8: error: variable name not initialized in the default constructor private final String name; ^ C:\Users\LJ\IdeaProjects\freelec-springboot2-webservice\src\main\java\com\zozo\book\springboot\web\web\d..
-
[intelliJ] 수동으로 코드 검증With Computer/Spring Starter Project 2020. 1. 31. 16:13
. ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v2.1.7.RELEASE) 2020-01-31 16:08:08.108 INFO 11028 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) 2020-01-31 16..