2012-11-30 93 views
1

我已經開發了一個新的Java(1.4)在甲骨文(10G)存儲過程。我從來沒有這樣做之前,我通常把Java和數據庫分離的,但是這是一個必要條件。所以,我開發了可以在Tomcat的部署,以及在Oracle中的存儲過程中的Java代碼。爲此,我使用了Java Logging API。日誌記錄甲骨文Java存儲過程使用Java記錄API(java.util.logging中)

我可以在Oracle中執行存儲過程,但我找不到日誌。我想知道我應該以打印日誌做,它可以對Oracle日誌或TRC文件,甚至,如果可能的話,將其配置爲日誌打印到另一特定的文件夾。

有誰知道如何做到這一點?

+0

看來你可以配置logging.properties,查詢最新的答案[這個問題]的(http://stackoverflow.com/questions/5665984/how-to-debug-java-stored-程序 - 在甲骨文)。 –

回答

1

正如this answer任命PeskyGnat你必須創建文件夾中的logging.properties文件:

$ ORACLE_HOME/JavaVM的/ lib目錄

配置此文件後,你可以看到

$ ORACLE_BASE /管理/ $ INSTANCE/UDUMP

:在日誌

在我而言,這是如此的Solaris第一個路徑是:

/export/home/oracle/app/oracle/product/10.2.0/Db_1/javavm/lib

而第二個:

/導出/家庭/ ORACLE /應用/ ORACLE /管理/



作爲額外的信息,以使容易找到日誌文件,您可以鍵入bash shell中的以下內容:

ls -altr 

而且這是一個如何的logging.properties文件的例子:

############################################################ 
# Default Logging Configuration File 
# 
# You can use a different file by specifying a filename 
# with the java.util.logging.config.file system property. 
# For example java -Djava.util.logging.config.file=myfile 
############################################################ 
############################################################ 
# Global properties 
############################################################ 
# "handlers" specifies a comma separated list of log Handler 
# classes. These handlers will be installed during VM startup. 
# Note that these classes must be on the system classpath. 
# By default we only configure a ConsoleHandler, which will only 
# show messages at the INFO and above levels. 
handlers= java.util.logging.ConsoleHandler 
# To also add the FileHandler, use the following line instead. 
#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler 
# Default global logging level. 
# This specifies which kinds of events are logged across 
# all loggers. For any given facility this global level 
# can be overriden by a facility specific level 
# Note that the ConsoleHandler also has a separate level 
# setting to limit messages printed to the console. 
.level= INFO 
############################################################ 
# Handler specific properties. 
# Describes specific configuration info for Handlers. 
############################################################ 
# default file output is in user's home directory. 
java.util.logging.FileHandler.pattern = %h/java%u.log 
java.util.logging.FileHandler.limit = 50000 
java.util.logging.FileHandler.count = 1 
java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter 
# Limit the message that are printed on the console to INFO and above. 
java.util.logging.ConsoleHandler.level = INFO 
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter 
############################################################ 
# Facility specific properties. 
# Provides extra control for each logger. 
############################################################ 

# For example, set the com.xyz.foo logger to only log SEVERE 
# messages: 
**<your.class.logger>.level = <level> (i.e.: INFO)**