JAVA-15787 Created new di-modules and server-modules

- Moved spring-freemarker to spring-web-modules
This commit is contained in:
Dhawal Kapil
2022-11-24 20:19:58 +05:30
parent 4ea66b59ce
commit 7d3e1e13f5
156 changed files with 63 additions and 43 deletions

View File

@@ -0,0 +1,10 @@
package com.baeldung.service;
import com.baeldung.interceptor.Audited;
public class SuperService {
@Audited
public String deliverService(String uid) {
return uid;
}
}