Display list of functions in methods to select from [message #1869414] |
Thu, 15 August 2024 23:48  |
Eclipse User |
|
|
|
After installing Eclipse 2024-06, when I create an instance of the method in the Controller class, Eclipse does not display its list of functions . Yes, I have imported and autowired the service.
For example
Students student = studentService.getById(sId);
The function getById() and others like updateStud(sId) etc are not displayed for me to choose from. Yes, I can navigate to the service and choose the functions, but that takes me away from the Controller, so its not a show-stopper, just annoying.
Can anyone help me fix this please?
|
|
|
|
Re: Display list of functions in methods to select from [message #1869444 is a reply to message #1869417] |
Fri, 16 August 2024 19:30  |
Eclipse User |
|
|
|
Well, normally I'd get a drop down list of functions top choose from e.g.
Students student = studentService.
and Eclipse used to display a list of all declarations in StudentService e.g.
getStudentById();
updateStudent();
removeStudent();
...
And I'd pick one function, so I'd click on getStudentById and insert the variable sId
Students student = studentService.getSudentById(sId);
But now, Eclipse does not display a list of declarations from service, so I just typed in the function I need. As said, its not a show stopper, but its annoying,
|
|
|
Powered by
FUDForum. Page generated in 0.03095 seconds