konveyor / konveyor/java-analyzer-bundle
SymbolInformation returned not accurate for annotation search
- Dominant language
- Java
- Stars
- 2
- Forks
- 21
- PR merge metrics
- No merged PRs in 30d
Description
## Issue
I'm working a PR to add more tests to this project and when I execute the following query for an annotation, I got a response which is not fully correct.
Here is the class parsed: https://github.com/snowdrop/migration-tool/blob/main/applications/spring-boot-todo-app/src/main/java/com/todo/app/controller/TaskController.java#L77
and code
```
@PostMapping("/home")
@ResponseBody
public ResponseEntity> createTask(@RequestBody Task task) {
taskService.addTask(task);
List tasks = taskService.getAllTasks();
return ResponseEntity.ok(tasks);
}
```
The search engine is returning as Symbol the first annotation `@PostMapping` and not the 2nd `@ResponseBody`.
Query: `org.springframework.web.bind.annotation.ResponseBody`, location: `4`
```
!ENTRY org.eclipse.jdt.ls.core 1 0 2025-11-07 11:41:29.344
!MESSAGE FQDN from code select: org.springframework.web.bind.annotation.ResponseBody
!ENTRY org.eclipse.jdt.ls.core 1 0 2025-11-07 11:41:29.345
!MESSAGE KONVEYOR_LOG: Got: 2 Number of search matching the query: "org.springframework.web.bind.annotation.ResponseBody" and location type: 4
!ENTRY org.eclipse.jdt.ls.core 1 0 2025-11-07 11:41:29.345
!MESSAGE KONVEYOR_LOG: Results size: 1
!ENTRY org.eclipse.jdt.ls.core 1 0 2025-11-07 11:41:29.347
!MESSAGE KONVEYOR_LOG:
-------------------------
Symbol name: PostMapping
kind: Property
Location: Location [
uri = "file:///Users/cmoullia/code/application-modernisation/02_konveyor/fork-java-analyzer-bundle/java-analyzer-bundle.test/target/workingProjects/maven/springboot-todo/src/main/java/com/todo/app/controller/TaskController.java"
range = Range [
start = Position [
line = 76
character = 5
]
end = Position [
line = 76
character = 17
]
]
]
%TESTE 2,shouldMatchSpringResponseBodyAnnotationTest(io.konveyor.tackle.core.test.JavaAnnotationTest)
%RUNTIME5599
```
Query: `ResponseBody`, location: `4`
```
!MESSAGE KONVEYOR_LOG: Got: 2 Number of search matching the query: "ResponseBody" and location type: 4
!MESSAGE KONVEYOR_LOG: Results size: 2
!MESSAGE KONVEYOR_LOG:
-------------------------
Symbol name: PostMapping
kind: Property
Location: Location [
uri = "file:///Users/cmoullia/code/application-modernisation/02_konveyor/fork-java-analyzer-bundle/java-analyzer-bundle.test/target/workingProjects/maven/springboot-todo/src/main/java/com/todo/app/controller/TaskController.java"
range = Range [
start = Position [
line = 76
character = 5
]
end = Position [
line = 76
character = 17
]
]
]
-------------------------
Symbol name: ResponseBody
kind: Property
Location: Location [
uri = "file:///Users/cmoullia/code/application-modernisation/02_konveyor/fork-java-analyzer-bundle/java-analyzer-bundle.test/target/workingProjects/maven/springboot-todo/src/main/java/com/todo/app/controller/TaskController.java"
range = Range [
start = Position [
line = 76
character = 5
]
end = Position [
line = 76
character = 17
]
]
]
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.