Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring-managed Clojure beans

Tags:

spring

clojure

I'm just wondering if it's possible to create Spring managed beans backed by Clojure code (Clojure namespace I guess, would implement regular Java interface)? If so, the example would be appreciated.

Thanks, Dmitriy.

like image 570
Dmitriy Kopylenko Avatar asked Jun 05 '09 13:06

Dmitriy Kopylenko


1 Answers

I haven't tried that yet, but section 3.3 of Programming Clojure explains how to create class files with the :gen-class form. Use it with :implements and :extends, build a JAR from your classes and import them into your Spring project. That should - theoretically - do the trick.

I'd be very interested in any example code, too, by the way.

like image 69
Nils Wloka Avatar answered Sep 20 '22 04:09

Nils Wloka