But when I have layout in route
@Route(value = VIEW_SIGN_IN, absolute = true, layout = LandingLayout.class)
I have such error
No SecurityManager accessible to the calling code, either bound to the org.apache.shiro.util.ThreadContext or as a vm static singleton. This is an invalid application configuration.
With
@Route(value = VIEW_SIGN_IN)
All work wellBut when I have layout in route
@Route(value = VIEW_SIGN_IN, absolute = true, layout = LandingLayout.class)
I have such error
No SecurityManager accessible to the calling code, either bound to the org.apache.shiro.util.ThreadContext or as a vm static singleton. This is an invalid application configuration.