Spring Boot/Spring Batch 목표 아키텍처 정의 #4

Open
forge-bot wants to merge 8 commits from forge/BAIS-SPRING-ARC-001-attempt-1 into main
Showing only changes of commit 533ec7c653 - Show all commits

View file

@ -0,0 +1,11 @@
package com.example.demo.service;
import org.springframework.stereotype.Service;
import com.example.demo.dto.TransactionDTO;
@Service
public class TransactionService {
public void processTransaction(TransactionDTO transactionDTO) {
// 거래 처리 로직
}
}