SYMBOL INDEX (26 symbols across 11 files) FILE: src/main/java/com/pjb/springbootjjwt/SpringbootJjwtApplication.java class SpringbootJjwtApplication (line 7) | @SpringBootApplication method main (line 11) | public static void main(String[] args) { FILE: src/main/java/com/pjb/springbootjjwt/api/UserApi.java class UserApi (line 15) | @RestController method login (line 23) | @PostMapping("/login") method getMessage (line 43) | @UserLoginToken FILE: src/main/java/com/pjb/springbootjjwt/config/InterceptorConfig.java class InterceptorConfig (line 15) | @Configuration method addInterceptors (line 17) | @Override method authenticationInterceptor (line 22) | @Bean FILE: src/main/java/com/pjb/springbootjjwt/entity/User.java class User (line 11) | @Data FILE: src/main/java/com/pjb/springbootjjwt/interceptor/AuthenticationInterceptor.java class AuthenticationInterceptor (line 28) | public class AuthenticationInterceptor implements HandlerInterceptor { method preHandle (line 31) | @Override method postHandle (line 79) | @Override method afterCompletion (line 83) | @Override FILE: src/main/java/com/pjb/springbootjjwt/interceptor/GloablExceptionHandler.java class GloablExceptionHandler (line 12) | @ControllerAdvice method handleException (line 14) | @ResponseBody FILE: src/main/java/com/pjb/springbootjjwt/mapper/UserMapper.java type UserMapper (line 10) | public interface UserMapper { method findByUsername (line 11) | User findByUsername(@Param("username") String username); method findUserById (line 12) | User findUserById(@Param("Id") String Id); FILE: src/main/java/com/pjb/springbootjjwt/service/TokenService.java class TokenService (line 13) | @Service("TokenService") method getToken (line 15) | public String getToken(User user) { FILE: src/main/java/com/pjb/springbootjjwt/service/UserService.java class UserService (line 12) | @Service("UserService") method findByUsername (line 16) | public User findByUsername(User user){ method findUserById (line 19) | public User findUserById(String userId) { FILE: src/main/resources/test.sql type `user` (line 24) | CREATE TABLE `user` ( FILE: src/test/java/com/pjb/springbootjjwt/SpringbootJjwtApplicationTests.java class SpringbootJjwtApplicationTests (line 8) | @RunWith(SpringRunner.class) method contextLoads (line 12) | @Test