File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- package cgs .interceptor ; // Your package name
1
+ package app .interceptor ; // Your package name
2
2
3
3
import org .springframework .web .multipart .MultipartHttpServletRequest ;
4
4
import org .springframework .web .servlet .HandlerInterceptor ;
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ This is the Spring configuration class that:
92
92
## Project Structure
93
93
94
94
```
95
- src/main/java/cgs /
95
+ src/main/java/app /
96
96
├── config/
97
97
│ └── WebConfig.java # Spring configuration
98
98
├── interceptor/
Original file line number Diff line number Diff line change 1
- package cgs .config ; // Your package name
1
+ package app .config ; // Your package name
2
2
3
3
import org .springframework .context .annotation .Bean ;
4
4
import org .springframework .context .annotation .Configuration ;
5
5
import org .springframework .web .servlet .config .annotation .EnableWebMvc ;
6
6
import org .springframework .web .servlet .config .annotation .InterceptorRegistry ;
7
7
import org .springframework .web .servlet .config .annotation .WebMvcConfigurer ;
8
8
9
- import cgs .interceptor .JavaSecurityInterceptor ;
9
+ import app .interceptor .JavaSecurityInterceptor ;
10
10
11
11
/**
12
12
* WebConfig
You can’t perform that action at this time.
0 commit comments