SYMBOL INDEX (74 symbols across 18 files) FILE: src/main/java/com/jstarcraft/example/ExampleApplication.java class ExampleApplication (line 8) | @SpringBootApplication method main (line 14) | public static void main(String[] arguments) { FILE: src/main/java/com/jstarcraft/example/ExampleExceptionHandler.java class ExampleExceptionHandler (line 16) | @ControllerAdvice method exceptionHandler (line 19) | @ResponseBody FILE: src/main/java/com/jstarcraft/example/SwaggerConfigurer.java class SwaggerConfigurer (line 18) | @Configuration method getDocket (line 22) | @Bean FILE: src/main/java/com/jstarcraft/example/WebConfigurer.java class WebConfigurer (line 7) | @Configuration method addCorsMappings (line 10) | @Override FILE: src/main/java/com/jstarcraft/example/common/configurer/LockableAspectConfigurer.java class LockableAspectConfigurer (line 14) | @Configuration method getLockableAspect (line 22) | @Bean("lockableAspect") FILE: src/main/java/com/jstarcraft/example/common/exception/StatusException.java class StatusException (line 8) | public class StatusException extends RuntimeException { method StatusException (line 14) | protected StatusException(int status, String message) { method getStatus (line 19) | public int getStatus() { FILE: src/main/java/com/jstarcraft/example/common/output/AbnormalOutput.java class AbnormalOutput (line 11) | public class AbnormalOutput { method AbnormalOutput (line 19) | public AbnormalOutput(StatusException exception) { method getClazz (line 25) | public String getClazz() { method getStatus (line 29) | public int getStatus() { method getDescription (line 33) | public String getDescription() { FILE: src/main/java/com/jstarcraft/example/common/output/NormalOutput.java class NormalOutput (line 10) | public class NormalOutput { method NormalOutput (line 14) | NormalOutput() { method NormalOutput (line 17) | public NormalOutput(T content) { method getContent (line 21) | public T getContent() { FILE: src/main/java/com/jstarcraft/example/common/utility/HttpUtility.java class HttpUtility (line 7) | public class HttpUtility { method getIp (line 15) | public static String getIp(HttpServletRequest request) { FILE: src/main/java/com/jstarcraft/example/movie/configurer/MovieDataConfigurer.java class MovieDataConfigurer (line 41) | @Configuration method getMovieDataSpace (line 51) | @Bean("movieDataSpace") method getUsers (line 63) | @Bean("movieUsers") method getItems (line 95) | @Bean("movieItems") method getMovieDataModule (line 130) | @Bean("movieDataModule") FILE: src/main/java/com/jstarcraft/example/movie/configurer/MovieLuceneConfigurer.java class MovieLuceneConfigurer (line 26) | @Configuration method getMovieEngine (line 29) | @Bean("movieEngine") FILE: src/main/java/com/jstarcraft/example/movie/configurer/MovieModelConfigurer.java class MovieModelConfigurer (line 34) | @Configuration method getModel (line 49) | private Model getModel(Class clazz, DataSpace dataSpa... method refreshModels (line 62) | public void refreshModels(DataSpace movieDataSpace, DataModule movieDa... method getMovieModels (line 73) | @Bean("movieModels") FILE: src/main/java/com/jstarcraft/example/movie/controller/MovieController.java class MovieController (line 22) | @RestController method getUsers (line 38) | @ApiOperation(value = "获取用户", notes = "获取用户") method click (line 52) | @ApiOperation(value = "点击", notes = "点击") method getRecommendItems (line 65) | @ApiOperation(value = "获取推荐条目", notes = "获取推荐条目") method getSearchItems (line 83) | @ApiOperation(value = "获取搜索条目", notes = "获取搜索条目") method getItems (line 104) | @ApiOperation(value = "获取条目", notes = "获取条目") FILE: src/main/java/com/jstarcraft/example/movie/controller/MovieItemOutput.java class MovieItemOutput (line 17) | public class MovieItemOutput { method MovieItemOutput (line 31) | public MovieItemOutput(MovieItem item, float score) { method getId (line 38) | public int getId() { method getTitle (line 42) | public String getTitle() { method getDate (line 46) | public LocalDate getDate() { method getScore (line 50) | public float getScore() { method instancesOf (line 54) | public static List instancesOf(Object2FloatMap instancesOf(List users) { FILE: src/main/java/com/jstarcraft/example/movie/service/MovieItem.java class MovieItem (line 17) | @LuceneConfiguration(id = "index") method MovieItem (line 40) | protected MovieItem() { method MovieItem (line 43) | public MovieItem(int index, String title, LocalDate date) { method getId (line 49) | @Override method getIndex (line 54) | public int getIndex() { method getTitle (line 58) | public String getTitle() { method getDate (line 62) | public LocalDate getDate() { FILE: src/main/java/com/jstarcraft/example/movie/service/MovieService.java class MovieService (line 40) | @Component method refreshModel (line 95) | private void refreshModel() { method postConstruct (line 104) | @PostConstruct method click (line 117) | @LockableMethod(strategy = HashLockableStrategy.class) method getUsers (line 129) | public List getUsers() { method getRecommendItems (line 140) | @LockableMethod(strategy = HashLockableStrategy.class) method getSearchItems (line 176) | @LockableMethod(strategy = HashLockableStrategy.class) method getItems (line 206) | @LockableMethod(strategy = HashLockableStrategy.class) FILE: src/main/java/com/jstarcraft/example/movie/service/MovieUser.java class MovieUser (line 12) | public class MovieUser { method MovieUser (line 23) | public MovieUser(int index, String name) { method getIndex (line 29) | public int getIndex() { method getName (line 33) | public String getName() { method click (line 37) | public void click(int itemIndex) { method isClicked (line 42) | public boolean isClicked(int itemIndex) {