Automatically remove spaces on both sides of parameters #11

Merged
FatttSnake merged 3 commits from FatttSnake into dev 2024-02-27 18:28:35 +08:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 1edfeffbf4 - Show all commits

View File

@@ -21,7 +21,7 @@ import top.fatweb.oxygen.api.vo.permission.RegisterVo
*/ */
@Aspect @Aspect
@Component @Component
class EventLogAspect( class EventLogInterceptor(
private val eventLogService: IEventLogService private val eventLogService: IEventLogService
) { ) {
/** /**

View File

@@ -1,4 +1,4 @@
package top.fatweb.oxygen.api.interceptor package top.fatweb.oxygen.api.aop
import jakarta.servlet.http.HttpServletRequest import jakarta.servlet.http.HttpServletRequest
import jakarta.servlet.http.HttpServletResponse import jakarta.servlet.http.HttpServletResponse

View File

@@ -3,7 +3,7 @@ package top.fatweb.oxygen.api.config
import org.springframework.context.annotation.Configuration import org.springframework.context.annotation.Configuration
import org.springframework.web.servlet.config.annotation.InterceptorRegistry import org.springframework.web.servlet.config.annotation.InterceptorRegistry
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer import org.springframework.web.servlet.config.annotation.WebMvcConfigurer
import top.fatweb.oxygen.api.interceptor.SysLogInterceptor import top.fatweb.oxygen.api.aop.SysLogInterceptor
/** /**
* System log configuration * System log configuration