これらの指示の後に JPA + EJB テストをセットアップしようとしています: http://ctpjava.blogspot.fi/2009/10/unit-testing-ejbs-and-jpa-with.html
私が完全に正しくできないように見える問題はほとんどないようです。まず、次のエラーが発生します (回避できますが、まだ修正する必要があります)。
SEVERE: EJB6004:Specified application server installation location [C:\Users\<userName>\.m2\repository\org\glassfish\extras\glassfish-embedded-all\domains\domain1] does not exist.
設定する(より正確な?)プロパティを提供するこのサイトを見つけました: http://docs.oracle.com/cd/E18930_01/html/821-2424/gjlde.html
そして、私のテスト設定をこれに変更しました:
import javax.ejb.embeddable.EJBContainer;
import javax.naming.Context;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
...
@BeforeClass
public static void createContainer() {
Map<String, Object> properties = new HashMap<String, Object>();
properties.put(EJBContainer.MODULES, new File("target/classes"));
properties.put("installation.root", "./src/test/glassfish");
properties.put("configuration.file", "./src/test/glassfish/domains/domain1/config/domain.xml");
container = EJBContainer.createEJBContainer(properties);
ctx = container.getContext();
}
そして pom.xml には、これに必要と思われる次のものがあります。
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.9.1.0</version>
<scope>test</scope>
</dependency>
<!-- Must be before java-ee -->
<dependency>
<groupId>org.glassfish.extras</groupId>
<artifactId>glassfish-embedded-all</artifactId>
<version>3.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
エラーはユーザーディレクトリを指しており、そこに必要なものを設定することでこれを渡すことができました(そしてこれを乗り越えました)が、すべてがSVN経由で利用可能でなければならないため、それは適切な場所ではありません.
後者のリンクによると、正しいプロパティが設定されていると思いますが、それらは無視されているようです。多分私は明らかな何かを見逃していますか?