You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to enclojure
Hello all!
So, i have some java classes in the package com.yourcompany; I
similary have a clojure file under the same package with the following
ns declaration
(ns com.yourcompany.defpackage
(:use clojure.contrib.pprint com.yourcompany.utils)
(:import
(java.lang ProcessBuilder Process)
(com.yourcompany SwankStartFilter)))
However, whenever i compile the java classes with F9 and then attempt
to load the ns in an already running clojure project repl prompt, it
says it cant find SwankStartFilter. I'm not mistyping anything. How do
i get clojure to recognize where this class is? Thanks!
Slartibartfast
unread,
Oct 16, 2009, 2:03:25 AM10/16/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to enclojure
Restart the REPL. REPLs don't see changes to the classes on disk so
the stale one has to go whenever you change Java code.
> Thanks!
You're welcome.
Gorsal
unread,
Oct 16, 2009, 12:25:21 PM10/16/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message