摘要:
@RestController public class EmployeeController { @PostMapping("checkEmployee") public String checkEmployee(@RequestBody Employee employee) { return e 阅读全文
摘要:
import java.time.Duration; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; public class DateTimeToStringUtil { private stat 阅读全文
摘要:
@Sevice public class Test { public void a(){ b(); } @Transactional public void b(){ System.out.print("b"); } } 此时事务时不生效的,因为@Transactional注解事务是通过代理来控制的 阅读全文