chore : 주석 중 일부 패키지 명시 내용 변경

This commit is contained in:
banjjoknim
2022-03-27 15:51:03 +09:00
parent a35fe9c2c9
commit c00f20cbc3
3 changed files with 3 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ class CorsConfiguration {
*
* 단순히 Bean 으로만 등록해서는 동작하지 않는다.
*
* @see com.banjjoknim.playground.config.security.JwtSecurityConfiguration
* @see com.banjjoknim.playground.jwt.config.security.JwtSecurityConfiguration
*/
@Bean
fun corsFilter(): CorsFilter {

View File

@@ -10,7 +10,7 @@ import javax.servlet.http.HttpServletResponse
/**
* @see javax.servlet.Filter
* @see com.banjjoknim.playground.config.security.JwtSecurityConfiguration
* @see com.banjjoknim.playground.jwt.config.security.JwtSecurityConfiguration
*/
class CustomFilter1 : Filter {
override fun doFilter(request: ServletRequest, response: ServletResponse, chain: FilterChain) {

View File

@@ -35,7 +35,7 @@ import org.springframework.context.annotation.Configuration
* ```
*
* @see org.springframework.boot.web.servlet.FilterRegistrationBean
* @see com.banjjoknim.playground.config.security.JwtSecurityConfiguration
* @see com.banjjoknim.playground.jwt.config.security.JwtSecurityConfiguration
* @see org.springframework.web.filter.DelegatingFilterProxy
* @see org.springframework.security.web.FilterChainProxy
*/