JPA를 사용할 때, 엔티티의 날짜에서 자바는 보통 java.util.Date 객체를 사용합니다. 하지만, DB에는 날짜도 여러 형태가 존재합니다.예를 들어, date(년월일), time(시분초), timestamp(년월일 시분초) 또는 datetime 으로 세가지의 타입이 존재합니다. 123456789101112131415161718192021222324import java.util.Date;import lombok.Data;import javax.persistence.*; @Entity@Datapublic class Article { @Id @GeneratedValue int id; String subject; @Column(length = 100000000) String content; @Tempo..
JPA에서는 엔티티 데이터에 접근하는 방식을 지정할 수 있습니다. 필드 접근 방식과 프로퍼티 접근 방식이 있습니다. 필드 접근 방식은 말 그대로, 변수에 직접 접근하는 것입니다. 이는 private 여도 접근할 수 있습니다.프로퍼티 접근 방식은 익숙한 형태로 getter 를 사용하는 방식입니다. 예제 소스코드의 형태 처럼 적용할 수 있습니다. 12345678910111213141516171819202122import java.util.Date;import lombok.Data;import javax.persistence.*; @Entity@Data@Access(AccessType.FIELD)//@Access(AccessType.PROPERTY)public class Article { @Id @Genera..
스프링 부트에서 정적 파일(css, js, images 파일 등등) 에 대한 경로를 지정할 때 아래와 같이 설정하면 됩니다. 123456789101112131415161718192021import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; @Configurationpublic class StaticResourceConfiguration extends WebMvcCon..
안녕하세요. 오랜만에 포스팅입니다. 이제 공부도 열심히하고 꾸준히 해야겟어요... Facebook에서 생활코딩 글도 자주 보고, 여기 저기 커뮤니티도 많이 보는데요. 생각보다 Summernote를 쓰시는 분이 많네요! 입 맛에 딱 맞는 이미지 업로드 예제가 없는 것 같아서~ 일단 제 입맛에 맞게 Github에 예제 소스를 올려 보았습니다. 참고한 자료는 다음과 같습니다. 스프링 공식 홈페이지 파일업로드 예제 - https://spring.io/guides/gs/uploading-files/코드로 배우는 스프링 웹 프로젝트(도서)예제 소스는 이곳에서 -> https://github.com/hwb2201/spring-boot-jpa-summernote-image-upload-exampleSpring Boot..
국내는 Mybatis 를 정말 많이 사용하죠.. 그래서 오늘은 이클립스 플러그인 중 Mybatis를 좀 더 편리하고, 안정적으로 사용할 수 있게 도와주는 플러그인인 "MyBatipse"를 소개하려고 합니다. Mybatis를 활용할 때 보통 DAO 또는 Mapper 등의 Interface Class를 구현하여 사용합니다. 어떤 분들는 Impl까지 구현해서 사용하기도 하는데요. (SqlSession 을 사실 Mybatis 연동할 때, 비즈니스(서비스)단에서 쿼리에 활용되는 파라미터만 잘 정돈하면, DAO에서 Impl이나 Mapper Impl 등은 구현안해도 된다고 생각하거든요. 일단, MyBaTipse의 github 주소입니다.링크 - https://github.com/mybatis/mybatipse 제공해..
- Total
- Today
- Yesterday
- telegram bot
- bootstrap
- summernote
- 쿼리 로그
- log4jdbc
- 정적 파일
- java
- mybatipse
- jsonify
- GO1104 LED
- offline.js
- Excel
- Spring
- 브라우저 콘솔
- AngularJS
- jQuery 삽입
- Spring Boot
- AOP
- 오프라인 확인
- static resources
- RollingFileAppender
- @Access
- @Temporal
- WYSIWYG
- learning javascript
- 초대장
- spring jpa
- 자바스크립트
- 스프링 부트
- 한성키보드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |