Hi,
I am new to plugin development for Atlassian products. Currently i am writing a plugin for Confluence. Though i know the basics of plugin development i have facing issues while trying to use spring annotation @Autowired in my plugin code.
In order to resolve the compile error i added the spring-context dependency in my plugin's pom.xml. But after adding that my plugin did not deploy and failed when i ran atlas-run command. I have a REST resource class in my plugin lets say it is A. This class depends on a service class B and invokes it's methods. My plugin was working fine till i was creating an object of B manually by using new keyword in class A.
e.g. - B obj = new B() works just fine, but as soon as i tried to use @Autowired B b; my plugin started complaining.
I have below 3 questions.
1 - Cant I use spring annotations such as @Component , @Autowired, @Service etc in Atlassian plugin code?
2 - Does the Atlassian plugin dependencies bring in spring libraries by default? I mean does the atlassian-spring-scanner-annotation & atlassian-spring-scanner-runtime dependencies bring in spring libraries as well?
3 - What configuration need to do for using spring in Atlassian plugins?
Thanks
Ayaskant
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.