Author Archives: Mark

Aspect trace logging in Java (Spring Framework)

An easy way to enable tracing of methods and parameter values in Java Spring is by using AspectJ. A simplified example of my Aspect class to make tracing easy, without any ‘logger.trace’ code in the classes itself: package com.markvandenbergh.test.util; import … Continue reading

Posted in Coding, General, Java, Spring | Tagged , , , , , | Leave a comment

Autowiring Spring bean in IntelliJ

Having one of the following errors in IntelliJ? Could not autowire. No beans of ‘yourType’ type found or Could not autowire. There is more than one bean of ‘yourType’ type. If you’re sure you have your Spring bean definitions correct … Continue reading

Posted in Coding, IntelliJ, Java, Spring | Tagged , , , , | 1 Comment

ExtJS – Local combobox keeps loading

Had a problem with ‘local store comboboxes’ on screens that I reused in several places. I’m mentioning ‘local store’ because when using a local store the combobox doesn’t have any reason to show a loading box. Due to some strange … Continue reading

Posted in Coding, ExtJS, Javascript | Tagged , , , | Leave a comment