[SpringBoot] JDBC Template : SELECT [REST API 적용하여 데이터 조회하기]

2023. 2. 12. 00:58·▣ Framework/Spring Boot🍀
728x90


 

[SpringBoot] Spring JDBC 사용하여 데이터베이스 연결하기 [JDBC Template, Groovy 활용]

[SpringBoot] Service 생성 및 의존성 주입 [생성자 주입을 권장하는 이유] [SpringBoot] SLF4J 활용하여 프로젝트 로그 출력하기 [프로젝트 logback 설정하기] [SpringBoot] 제이슨(JSON)으로 데이터 형식 리턴하기

yermi.tistory.com


- JDBC Template : SELECT

@PathVariable

호출 : localhost:8000/info/cityListByCode/KOR/3000000
→ countryCode = KOR, population = 3000000
@GetMapping("cityListByCode/{countryCode}/{population}")
public Object cityByCountryCode(@PathVariable("countryCode") String ctCode, @PathVariable("population") int population) {
	log.info("countryCode = {}, population {}", ctCode, population);
	List<City> cityList = infoService.findCityByCodeAndPopulation(ctCode, population);
	return cityList;
}

countryCode = KOR, population = 3000000


@RequestParam

호출 : localhost:8000/info/cityListByCode?countryCode=KOR
→ countryCode = KOR, population = 0
@GetMapping("cityListByCode")
public Object cityByCountryCode(@RequestParam("countryCode") String ctCode, @RequestParam(value="population", required = false, defaultValue = "0") int population) {
	log.info("countryCode = {}, population = {}", ctCode, population);
	List<City> cityList = infoService.findCityByCodeAndPopulation(ctCode, population);
	return cityList;
}

countryCode = KOR, population = 0


- CitySql.groovy

class CitySql {
	public static final String SELECT = """
		SELECT ID, Name, CountryCode, District, Population FROM city WHERE 1=1 
	""";
	
	public static final String COUNTRY_CODE_CONDITION = """
		AND countryCode = :countryCode
	""";
	
	public static final String POPULATION_CONDITION = """
		AND population >= :population
	""";
}

- CityRepository

@Slf4j
@Repository
public class CityRepository {
	
	private final NamedParameterJdbcTemplate namedParameterJdbcTemplate;
	private final CityRowMapper cityRowMapper;

	public CityRepository(NamedParameterJdbcTemplate namedParameterJdbcTemplate) {
		this.namedParameterJdbcTemplate = namedParameterJdbcTemplate;
		this.cityRowMapper = new CityRowMapper();
	}
	
        // 코드 생략
    
	public List<City> findByCountryCodeAndPopulation(String countryCode, int population) {
		String query = CitySql.SELECT + CitySql.COUNTRY_CODE_CONDITION + CitySql.POPULATION_CONDITION;
		SqlParameterSource param = new MapSqlParameterSource("countryCode", countryCode).addValue("population", population);
		return namedParameterJdbcTemplate.query(query, param, this.cityRowMapper);
	}

}

- InfoService

@Service
public class InfoService {
	
	private final CityRepository cityRepository;
    
	public InfoService(CityRepository cityRepository) {
		this.cityRepository = cityRepository;
	}

	public List<City> findCityByCodeAndPopulation(String countryCode, int population) {
		return this.cityRepository.findByCountryCodeAndPopulation(countryCode, population);
	}
	
}

- InfoController

@Slf4j
@RestController
@RequestMapping("info")
public class InfoController {
	
	private InfoService infoService;
	
	@Autowired
	public InfoController(InfoService infoService) {
		this.infoService = infoService;
	}
		
	@GetMapping("cityListByCode/{countryCode}/{population}")
	public List<City> cityByCountryCode(@PathVariable("countryCode") String ctCode, @PathVariable("population") int population) {
		log.info("countryCode = {}, population {}", ctCode, population);
		
		List<City> cityList = infoService.findCityByCodeAndPopulation(ctCode, population);
		return cityList;
	}
	
}

JDBC Template : SELECT 출력 결과


- 참고자료

 

[SpringBoot] RestApi 만들기 (5.3) jdbcTemplate - Select

SpringBoot jdbcTemplate NamedParameterJdbcTemplate 지난 시리즈에 이어서, Select 로 리스트 조회까지 했습니다. 이번엔 Select 문에 조건절을 던져서 조회하는걸 해보겠습니다. 이런 쿼리, SELECT * FROM world.city WHE

hello-bryan.tistory.com


728x90
'▣ Framework/Spring Boot🍀' 카테고리의 다른 글
  • [SpringBoot] REST API 활용하여 CUD 처리 [INSERT, UPDATE, DELETE]
  • [SpringBoot] GetMapping, PostMapping [예외처리로 에러 방지하기]
  • [SpringBoot] Spring JDBC 사용하여 데이터베이스 연결하기 [JDBC Template, Groovy 활용]
  • [SpringBoot] Service 생성 및 의존성 주입 [생성자 주입을 권장하는 이유]
예르미(yermi)
예르미(yermi)
끊임없이 제 자신을 계발하는 개발자입니다👨🏻‍💻
  • 예르미(yermi)
    예르미의 코딩노트
    예르미(yermi)
  • 전체
    오늘
    어제
    • 분류 전체보기 (937)
      • ◎ Java (133)
        • Java☕ (93)
        • JSP📋 (26)
        • Applet🧳 (6)
        • Interview👨🏻‍🏫 (8)
      • ◎ JavaScript (48)
        • JavaScript🦎 (25)
        • jQuery🌊 (8)
        • React🌐 (2)
        • Vue.js🔰 (6)
        • Node.js🫒 (3)
        • Google App Script🐑 (4)
      • ◎ HTML5+CSS3 (17)
        • HTML5📝 (8)
        • CSS3🎨 (9)
      • ──────────── (0)
      • ▣ Framework (67)
        • Spring🍃 (36)
        • Spring Boot🍀 (12)
        • Bootstrap💜 (3)
        • Selenium🌕 (6)
        • MyBatis🐣 (10)
      • ▣ Tools (47)
        • API🎯 (18)
        • Library🎲 (15)
        • JitPack🚀 (3)
        • Jenkins👨🏻 (7)
        • Thymeleaf🌿 (4)
      • ▣ Server (32)
        • Apache Tomcat🐱 (14)
        • Apache HTTP Server🛡️ (1)
        • Nginx🧶 (7)
        • OracleXE💿 (4)
        • VisualSVN📡 (4)
      • ▣ OS : 운영체제 (18)
        • cmd : 명령프롬프트💻 (10)
        • Linux🐧 (8)
      • ▣ SQL : Database (56)
        • Oracle SQL🏮 (26)
        • PL SQL💾 (9)
        • MySQL🐬 (6)
        • MariaDB🦦 (6)
        • H2 Database🔠 (3)
        • SQL 실전문제🐌 (6)
      • ────────── (0)
      • ◈ Human Project (86)
        • Mini : Library Service📚 (15)
        • 화면 설계 [HTML]🐯 (10)
        • 서버 프로그램 구현🦁 (15)
        • Team : 여수어때🛫 (19)
        • Custom : Student🏫 (9)
        • Custom : Board📖 (18)
      • ◈ Yermi Project (40)
        • 조사모아(Josa-moa)📬 (5)
        • Riddle-Game🧩 (6)
        • 맛있을 지도🍚 (2)
        • 어디 가! 박대리!🙋🏻‍♂️ (5)
        • 조크베어🐻‍❄️ (4)
        • Looks Like Thirty🦉 (2)
        • Toy Project💎 (12)
        • 오픈소스 파헤치기🪐 (4)
      • ◈ Refactoring (15)
        • Mini : Library Service📚 (8)
        • 서버 프로그램 구현🦁 (1)
        • Team : 여수어때🛫 (0)
        • 쿼리 튜닝일지🔧 (6)
      • ◈ Coding Test (89)
        • 백준(BOJ)👨🏻‍💻 (70)
        • 프로그래머스😎 (2)
        • 코드트리🌳 (7)
        • 알고리즘(Algorithm)🎡 (10)
      • ◈ Study (102)
        • 기초튼튼 개발지식🥔 (25)
        • HTTP 웹 지식💡 (4)
        • 클린코드(Clean Code)🩺 (1)
        • 디자인패턴(GoF)🥞 (12)
        • 다이어그램(Diagram)📈 (4)
        • 파이썬(Python)🐍 (16)
        • 에러노트(Error Note)🧱 (34)
        • 웹 보안(Web Security)🔐 (6)
      • ◈ 공부모임 (39)
        • 혼공학습단⏰ (18)
        • 코드트리 챌린지👊🏻 (2)
        • 개발도서 100독👟 (8)
        • 나는 리뷰어다🌾 (11)
      • ◈ 자격증 공부 (37)
        • 정보처리기사🔱 (16)
        • 정보처리산업기사🔅 (9)
        • 컴퓨터활용능력 1급📼 (12)
      • ─────────── (0)
      • ◐ 기타 (113)
        • 알아두면 좋은 팁(tip)✨ (46)
        • 개발자의 일상🎈 (44)
        • 개발도서 서평🔍 (10)
        • 개발관련 세미나🎤 (2)
        • 블로그 꾸미기🎀 (9)
        • 사도신경 프로젝트🎚️ (2)
  • 인기 글

  • 최근 댓글

  • 태그

    BOJ
    백준
    javascript
    Error Note
    백준 티어
    Oracle
    자바스크립트
    spring
    꿀팁
    프로그래밍
    Database
    SQL
    Project
    CSS
    코딩 테스트
    일상
    Java
    html
    코딩
    jsp
  • 250x250
  • hELLO· Designed By정상우.v4.10.3
예르미(yermi)
[SpringBoot] JDBC Template : SELECT [REST API 적용하여 데이터 조회하기]
상단으로

티스토리툴바