You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a vaadin project, a view that has another service injected with @Autowired annotation fails after deleting/adding a component due to the following exceptions. Although, it works when Autowired annotation is removed.
Hotswap version is: HOTSWAP AGENT: 14:32:18.991 INFO (org.hotswap.agent.HotswapAgent) - Loading Hotswap agent {2.0.1} - unlimited runtime class redefinition.
After some investigation, I found out that parameterAnnotation byte codes inside org.springframework.core.MethodParameter.getParameterAnnotations differs
Broken one:
Working one:
The text was updated successfully, but these errors were encountered:
In a vaadin project, a view that has another service injected with
@Autowired
annotation fails after deleting/adding a component due to the following exceptions. Although, it works when Autowired annotation is removed.Hotswap version is:
HOTSWAP AGENT: 14:32:18.991 INFO (org.hotswap.agent.HotswapAgent) - Loading Hotswap agent {2.0.1} - unlimited runtime class redefinition.
Also,
An example view that has a parameter injected in the constructor with Autowired annotation.
After some investigation, I found out that parameterAnnotation byte codes inside org.springframework.core.MethodParameter.getParameterAnnotations differs
Broken one:
Working one:
The text was updated successfully, but these errors were encountered: