error 썸네일형 리스트형 [JPA] Data truncation: Data too long for column @Getter @Entity @NoArgsConstructor(access = AccessLevel.PROTECTED) public class Qna extends BaseEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "user_id") private Account account; private String title; private String content; } spring: jpa: hibernate: ddl-auto: create 위와 같이 Qna Entity를 생성하고 jpa.hibernate.ddl-.. 더보기 [Jmeter] HttpMediaTypeNotSupportedException: Content type 'text/plain;charset=UTF-8' not supported Jmeter를 사용해서 POST 요청을 보낸 상황에서 다음과 같은 오류가 발생하였다. 원인 Jmeter 사용 시 Http Header의 Content-type을 설정하지 않으면 text/plain으로 요청을 보내게 된다. 해결 Http Header의 content-type을 application/json으로 바꾸면 된다. 방법 Http Header Manager를 선택한다. Name: content-type | Value: application/json을 입력한 후 요청을 보내면 성공한다. 더보기 이전 1 다음