Files
YouAndMe/src/main/java/com/yam/app/account/presentation/WebConfiguration.java
Rebwon b9e1e52de6 Refactor code
- Remove util class
- Add SessionManager
- Refactor test code
2021-09-14 12:05:44 +09:00

16 lines
529 B
Java

package com.yam.app.account.presentation;
import java.util.List;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class WebConfiguration implements WebMvcConfigurer {
@Override
public void addArgumentResolvers(List<HandlerMethodArgumentResolver> resolvers) {
resolvers.add(new LoginAccountMethodArgumentResolver());
}
}