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) ;
}
}