I have a clojure class which I initialize using spring bean initialization.
My setter method is as follows
(defn -setCompanyName [currency] (println (str "company : " company)))
Bean initialization is as follows
<bean id="company" class="test.Company" p:companyName="orce"/>
I'm getting following error.
Invalid property 'companyName' of bean class [test.Company]: Bean property 'companyName' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?
Does anyone knows the root cause for this issue.
Regards Isuru.