Whiteship
  • Home
  • 인프런 강의
  • Java
  • Spring
  • JPA
  • SDE Tips
Subscribe

우편번호검색

A collection of 1 post
우편번호검색

우편번호 검색&입력기 만들기

1. 우편번호 DB 다운받기 http://www.zipfinder.co.kr/zipcode/index.html 우정국에서 제공하는 zipcode 데이터를 받습니다. 여러가지 형태가 있는데 저는 가장 컬럼 갯수가 적은 걸 받았습니다. 2. 도메인 만들기 @Entity @DomainInfo(“우편번호”) public class Zipcode { @Id @GeneratedValue(strategy= GenerationType.AUTO) int id; @Column(length=7) @DomainInfo(“zipcode”) String zipcode;
Mar 3, 2010 — 6 min read
Whiteship © 2022
Powered by Ghost