this is the contene of my .emacs file it work to debug jsp 
page.....means java file after conversion from jsp to java but not work 
directly on jsp if you put
break dircetly on jsp it doen't work

server:weblogic 6.1

;; Red Hat Linux default .emacs initialization file

;; Are we running XEmacs or Emacs?
(defvar running-xemacs (string-match "XEmacs\\|Lucid" emacs-version))

;; Set up the keyboard so the delete key on both the regular keyboard
;; and the keypad delete the character under the cursor and to the right
;; under X, instead of the default, backspace behavior.
(global-set-key [delete] 'delete-char)
(global-set-key [kp-delete] 'delete-char)

;; Turn on font-lock mode for Emacs
(cond ((not running-xemacs)
    (global-font-lock-mode t)
))

;; Always end a file with a newline
(setq require-final-newline t)

;; Stop at the end of the file, not just add lines
(setq next-line-add-newlines nil)
(add-to-list 'load-path "~/jde-2.2.9beta8/lisp")
(add-to-list 'load-path "~/elib-1.0")
(add-to-list 'load-path "~/speedbar-0.14beta2")
(add-to-list 'load-path "~/eieio-0.17beta3")
(add-to-list 'load-path "~/semantic-1.4beta13")
(require 'semantic-load)
(require 'jde)
(custom-set-variables
 '(jde-ant-buildfile "~/jp/jplib/build.xml")
 '(jde-ant-read-args t)
 '(jde-ant-program "ant")
 '(jde-compile-option-sourcepath (quote ("~/jp/jplib/src/")))
 '(jde-db-option-classpath (quote ("~/jp/activerecruiter/" 
"/usr/local/tomcat321/jakarta-tomcat-3.2.1/work/localhost_8080%2Factiverecruiter")))
 '(jde-compile-option-classpath (quote ("~/jp/jplib/src/")))
 '(jde-debugger (quote ("JDEbug")))
 '(jde-ant-read-buildfile t)
 '(jde-db-source-directories (quote ("" 
"/usr/local/tomcat321/jakarta-tomcat-3.2.1/work/localhost_8080%2Factiverecruiter/" 
"/tmp/debugtest/jsp_servlet")))
 '(jde-ant-home "/usr/local/ant/bin/ant")
 '(jde-compiler (quote ("javac" "")))
 '(jde-run-option-classpath (quote 
("/usr/local/tomcat321/jakarta-tomcat-3.2.1/work/localhost_8080%2Factiverecruiter/")))
 '(jde-bug-jpda-directory "/usr/local/jdk/lib/i386"))
(custom-set-faces)

Reply via email to