Skip to content

Commit

Permalink
[BE] HOTFIX: 필터 시간 두번찍히는 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
enaenen committed Nov 27, 2023
1 parent d36b4f9 commit ff092da
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.context.annotation.Import;

@SpringBootApplication(exclude = SecurityAutoConfiguration.class)
@ServletComponentScan
@Import({CorsConfig.class})
// @CrossOrigin(origins = {"*"}, allowedHeaders = {"*"}, originPatterns = {"*"})
public class CabinetApplication {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
* 모든 응답에 X-Current-Time 헤더를 추가하는 필터
*/
@Component
@Order(1)
@WebFilter("/*")
public class TimeResponseFilter implements Filter {

Expand Down

0 comments on commit ff092da

Please sign in to comment.