2016-07-13 15 views
0

私はJavaの開発者ではなく、むしろプロジェクトのJavaコードのほんの一部を活用する必要のあるPython開発者であると言っています。言われていること:-)Javaエラー:java.lang.ClassNotFoundException:

、私は次のエラーを受信して​​います。次のコードを使用して

Caused by: java.lang.ClassNotFoundException: CustomSecurePropertyPlaceholderModule 

:私はsrc/main/javaを確保してきました

<?xml version="1.0" encoding="UTF-8"?> 


<domain:mule-domain xmlns="http://www.mulesoft.org/schema/mule/core" 
        xmlns:domain="http://www.mulesoft.org/schema/mule/ee/domain" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns:spring="http://www.springframework.org/schema/beans" 
        xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" 
        xmlns:mule-ss="http://www.mulesoft.org/schema/mule/spring-security" 
        xmlns:context="http://www.springframework.org/schema/context" 
        xmlns:tls="http://www.mulesoft.org/schema/mule/tls" 
        xmlns:ss="http://www.springframework.org/schema/security" 
        xmlns:http="http://www.mulesoft.org/schema/mule/http" 
        xmlns:secure-property-placeholder="http://www.mulesoft.org/schema/mule/secure-property-placeholder" 
        xsi:schemaLocation="http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd 
             http://www.mulesoft.org/schema/mule/ee/tracking http://www.mulesoft.org/schema/mule/ee/tracking/current/mule-tracking-ee.xsd 
             http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd 
             http://www.mulesoft.org/schema/mule/ee/domain http://www.mulesoft.org/schema/mule/ee/domain/current/mule-domain-ee.xsd 
             http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd 
             http://www.mulesoft.org/schema/mule/tls http://www.mulesoft.org/schema/mule/tls/current/mule-tls.xsd 
             http://www.mulesoft.org/schema/mule/secure-property-placeholder http://www.mulesoft.org/schema/mule/secure-property-placeholder/current/mule-secure-property-placeholder.xsd 
             http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 


    <spring:beans> 
     <spring:bean id="secure-property-placeholder" class="CustomSecurePropertyPlaceholderModule"> 
      <spring:property name="encryptionAlgorithm" value="AES" /> 
      <spring:property name="encryptionMode" value="CBC" /> 
      <spring:property name="keyFilePath" value="keyfile.properties" /> 
      <spring:property name="locations" value="secure.properties"/> 
      <spring:property name="ignoreResourceNotFound" value="true" /> 
      <spring:property name="ignoreUnresolvablePlaceholders" value="true" /> 
     </spring:bean> 
    </spring:beans> 


</domain:mule-domain> 

は内部ビルド・パス上にありますconfigを実行してください(ファイルCustomSecurePropertyPlaceholderModuleがそこにあります)。私はまた、shared_resources/target/classesが実行設定の出力フォルダとして設定されていることも確認します。なぜ私はまだこのエラーを受け取っているすべてのアイデア?

答えて

2

Javaでは、クラスは通常パッケージに含まれています。

と同様に、com.yourself.CustomSecurePropertyPlaceholderModule

は、src/main/java/com/yourselfに(私はあなたがそれを持っていることを望みます)package com.yourselfで先頭に追加し、あなたのクラスを入れてみてください。使用する

<spring:bean id="secure-property-placeholder" class="com.yourself.CustomSecurePropertyPlaceholderModule"> 
+0

お手伝いが必要な@alamar!私はちょうど新しいパッケージを作成し、クラスをパッケージに移動し、クラス内の参照とSpring Beanを更新しました。それでも同じエラーが発生します。他のアイデア? –

+0

@PaulCalabroあなたはスタックトレース全体を提供してください(もっと良いでしょう)?そこには些細な情報はありません。 – alamar

+0

もちろん!ここに情報を含む要点があります:https://gist.github.com/paulcalabro/b8c6a46041b8b555879f52d1583daf58 (投稿には長すぎます) –

関連する問題