Gerson K. M.
- Total activity 22
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 9
-
Gerson K. M. created a post, IntelliJ does not detect a custom autowired annotation
I have declared a custom autowired annotation like this: <bean > <property name="autowiredAnnotationType" value="my.custom.Autowiring"/> </bean>But IntelliJ doesn't detect it in the ... -
-
Gerson K. M. created a post, IntelliJ does not detect a custom stereotype (for component scanning)
I have created a new custom stereotype like this:@Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface DomainService { String value() default ""; }then I... -
Gerson K. M. created a post, False warning
I've written the following code but IntelliJ says "Condition 'lastElement != null' is always 'false'"... someList) { Long lastElement = null; for (Long element : someList) { ... -
Gerson K. M. commented, -
Gerson K. M. commented, -
Gerson K. M. created a post, Spring Security's XML: This custom Spring bean has not yet been parsed
How to solve this problem?When I run 'Parse custom bean', IntelliJ says 'Cannot find custom handler for namespace'.ThanksI'm using build #9008. -
Gerson K. M. created a post, IntelliJ doesn't link the @Autowired attribute to its dependency class.
Sometimes (in some classes) when using @Autowired on fields/constructors/methods, IntelliJ does not link @Autowired attribute to its dependency by showing the icon that says "Navigate to the autowi... -
Gerson K. M. created a post, Answered@Autowired: Why IntelliJ detects more than one bean of 'XXX' type?
Hi,I don't know why IntelliJ always shows the following warning (SpringJavaAutowiringInspection) on field/constructor/method annotated by Spring's @Autowired:'Could not autowire. There are more tha... -
Gerson K. M. commented,