일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스프링부트 도커
- Spring
- Atomicity
- 생성자주입
- 비기능적 요구사항
- 스프링 포매터
- 정적팩토리메서드
- method refetence
- IOC
- jpa no session
- 스프링시큐리티
- jpa lazy
- 스프링di
- 동적파라미터
- 수정자주입
- 스프링
- 스프링 시큐리티 설정
- kotlin 리팩터링
- 자바 필터
- ioc컨테이너
- 토비의 스프링
- java predicate
- 소프트웨어의 품격
- kotlin ::
- 기능적 요구사항
- 도커 이미지 빌드
- fetch join
- spring formatter
- 그래프큐엘
- open-session-in-view
- Today
- Total
목록분류 전체보기 (109)
공부기록
먼저 인증서를 만들자. 터미널에서 다음과 같이 입력한다. keytool -genkey -alias gracelove -storetype PKCS12 -keyalg RSA -keysize 2048 -keystore keystore.p12 -validity 4000 application.properties 에 다음과 같이 적절한 값을 넣어준다. 컨트롤러를 만들자. 터미널에서 curl 로 요청을 보내보자 curl -I -k --url https://localhost:8443/hello 리스폰스라인을 보면 HTTP2로 통신한 것을 볼 수 있다 참고소스. https://github.com/gracelove91/springboot-with-whiteship/tree/453045f3aa4496822181375fa20..
연관관계의 주인 public class Member { @ManyToOne @JoinColumn(name = "team_id") private Team team; ... } 이렇게만 있어도 member.getTeam() 으로 객체그래프를 탐색할 수 있다. 하지만 반대쪽인 Team 객체에서는 List members 등과 같은 필드가 없기 때문에 Team에서 Member객체를 탐색할 수 없다. 추천하지는 않지만 아래와 같이 Team에서도 Member를 탐색할 수 있게끔 양방향관계를 갖고있다고 생각해보자. public class Team { @OneToMany(mappedBy = "team") private List members = new ArrayList(); ... } 엄밀히 말해서 엔티티에서는 양방향 ..
@Entity public class Team { @Id @GeneratedValue @Column(name = "team_id") private String id; ... @GeneratedValue에서 strategy 옵션 없을 때 h2데이터베이스(1.4.199)는 기본전략으로 시퀀스 씀. 이런 환경에서 id는 String타입일 때 insert 쿼리 안나가고 테이블 만드는 쿼리만 나감.. 그래서 이렇게 수정함 @Entity public class Team { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "team_id") private Long id; private String name; id는 Long타입으로. str..
Resource 리소스를 읽어오는 기능을 제공하는 인터페이스. ApplicationContext extends ResourceLoader @Component @RequiredArgsConstructor public class AppRunner implements ApplicationRunner { private final ResourceLoader resourceLoader; @Override public void run(ApplicationArguments args) throws Exception { Resource resource = resourceLoader.getResource("classpath:test.txt"); System.out.println("resource = " + resource...