Ivica Loncar

Results 13 comments of Ivica Loncar

1st issue: See parses following declaration: `@see [[https://somewhere.com]]` into prefix and link. In this case `@see` is prefix and `https://somewhere.com` is a link and then it transforms it into: `@see...

beans are: - meterRegistryPostProcessor - actorSystemHolder - xlrDatabaseInformation - sqlConfiguration - databaseProxyFeature - distributedFeaturesConfiguration where actorSystemHolder is (most of the code is Scala codebase): ``` class ActorSystemHolder(xlrConfig: XlrConfig, @Qualifier("xlrDatabaseInformation") dbInfo:...

Hmmm I noticed that the bean itself is configured via xml config: ``` ``` not sure if that makes difference

TBH I suspect it has something to do with XML vs Annotation config. It would take me some time to create reproducible sample (as this just works elsewhere). In the...

You shouldn't pass -javaagent to bootRun via cmdline. spring boot plugin should automatically detect if spring-loaded is present. I've tried to document setup for jhipster-loaded: https://github.com/jhipster/jhipster-loaded/wiki/Usage Plain spring-loaded configuration should...

@fbricon I wouldn't expect from javaagent to just work in OSGI land :) Did you try to setup boot delegation? Taken from jprofiler setup (I guess they would have similar...

invocation: ``` -noverify -javaagent:/home/ilx/.m2/m2repo/org/springframework/springloaded/1.2.3.BUILD-SNAPSHOT/springloaded-1.2.3.BUILD-SNAPSHOT.jar -Dspringloaded=plugins=io.github.jhipster.loaded.instrument.JHipsterLoadtimeInstrumentationPlugin,io.github.jhipster.loaded.JHipsterPluginManagerReloadPlugin;exclusions=com.zaxxer.hikari..*,org.hibernate..*,org.springframework.orm.jpa..* -DhotReload.enabled=true ... ```

Seems that exclusion is important factor here. If type is not reloaded idyrun will be invoked and it will fail.

I tried 1.1.3 on websphere 8.5 and got similar stacktrace: ``` [10.09.13. 15:03:49:215 CEST] 00000069 SpringLoadedP E org.springsource.loaded.agent.SpringLoadedPreProcessor preProcess Unexpected problem transforming call sites java.util.ConcurrentModificationException at java.util.AbstractList$SimpleListIterator.next(AbstractList.java:64) at org.springsource.loaded.TypeRegistry.couldBeReloadable(TypeRegistry.java:610) at...