Notice
Recent Posts
Recent Comments
Link
«   2024/06   »
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
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

SampleServiceImpl.java 본문

SPRING/chapter06_AOP

SampleServiceImpl.java

GAWON 2023. 7. 6. 18:36
package org.joonzis.service;

import org.springframework.stereotype.Service;

@Service
public class SampleServiceImpl implements SampleService{

	@Override
	public Integer doAdd(String str1, String str2) throws Exception {
		return Integer.parseInt(str1) +Integer.parseInt(str2) ;
	}
	
}

'SPRING > chapter06_AOP' 카테고리의 다른 글

chapter06_AOP/pom.xml  (0) 2023.07.06
SampleServiceTests.java  (0) 2023.07.06
SampleService.java  (0) 2023.07.06
LogAdvice.java  (0) 2023.07.06
02_Transaction.txt  (0) 2023.07.06