Spring MVCアプリケーション内でJUnitテストを実行する際の問題。テスト1(insertTweet)は正常に実行されているようですが、テスト2では "LazyInitializationException"例外が発生します(以下の完全なトレースを参照)。スローされた理由はわかりますが、セッションが閉じている理由と、各テストの開始時にセッションを再開する方法2(または既存のセッションを開いたままにして、残りのテストを完了する)はわかりませんか?スローされたStackTrace全体をテストクラスと共に貼り付けました。
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: com.project.user.User.tweets, could not initialize proxy - no Session
at org.hibernate.collection.internal.AbstractPersistentCollection.throwLazyInitializationException(AbstractPersistentCollection.Java:566)
at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.Java:186)
at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.Java:545)
at org.hibernate.collection.internal.AbstractPersistentCollection.write(AbstractPersistentCollection.Java:370)
at org.hibernate.collection.internal.PersistentBag.add(PersistentBag.Java:291)
at com.project.core.Tweet.Tweet.<init>(Tweet.Java:113)
at com.project.core.service.impl.FanoutServiceTester.insertTweet(FanoutServiceTester.Java:69)
at com.project.core.service.impl.FanoutServiceTester.testInsertRetweet(FanoutServiceTester.Java:62)
at Sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at Sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.Java:57)
at Sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.Java:43)
at Java.lang.reflect.Method.invoke(Method.Java:601)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.Java:44)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.Java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.Java:41)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.Java:20)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.Java:28)
at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.Java:74)
at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.Java:83)
at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.Java:72)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.Java:231)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.Java:88)
at org.junit.runners.ParentRunner$3.run(ParentRunner.Java:193)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.Java:52)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.Java:191)
at org.junit.runners.ParentRunner.access$000(ParentRunner.Java:42)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.Java:184)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.Java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.Java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.Java:236)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.Java:174)
at org.Eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.Java:50)
at org.Eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.Java:38)
at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.Java:467)
at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.Java:683)
at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.Java:390)
at org.Eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.Java:197)
@RunWith(SpringJUnit4ClassRunner.class)
@TestExecutionListeners({ServiceTestExecutionListener.class})
@ActiveProfiles("test")
public abstract class AbstractServiceImplTest extends AbstractTransactionalJUnit4SpringContextTests {
@PersistenceContext
protected EntityManager em;
@Autowired protected TweetService tweetService;
@Autowired protected UserService userService;
}
public class FanoutServiceTester extends AbstractServiceImplTest{
private static User user = null;
private static User userTwo = null;
@Before
public void setUp() throws Exception {
user = userService.findByUserId(1);
//UserTwo Follows User One
userTwo = userService.findByUserId(2);
}
@Test
public final void testInsertTweet() {
insertTweet();
//Assert Here
}
@Test
public final void testInsertRetweet() {
insertTweet();
//Assert Here
}
private Tweet insertTweet(){
Tweet tweet = new Tweet(user);
String text = "This is a Message";
Tweet.setTweetText(text);
Tweet saved = tweetService.save(Tweet);
return saved;
}
}
私はこれに遭遇し、エラーは少し誤解を招くものです。 Session
は閉じられていません。
userService.findByUserId(1);
を呼び出すと、Join
テーブルに対してTweets
が実行されるため、このコレクションが返されます。
_com.project.user.User.tweets
_
Hibernateはデフォルトではこのコレクションを初期化しません。これを初期化するには、たとえば次のようにHibernate.initialize()
を呼び出します。
_Hibernate.initialize(user.getTweets());
_
もちろん、tweets
コレクションを返す実際のメソッドをgetTweets()
に置き換えます。
@Transactional
テスト方法について– ben75 2013年11月6日14:29
ええ、私は問題を解決しました:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath*:applicationContext.xml"})
@Transactional
public class UserinfoActionTest extends StrutsSpringJUnit4TestCase<UserinfoAction> {
@Test
public void testLogin2(){
request.setParameter("jsonQueryParam", param);
String str = null;
try {
str = executeAction("/login.action");
HashMap<String,List<TUserinfo>> map = (HashMap<String,List<TUserinfo>>)findValueAfterExecute("outDataMap"); }
catch (Exception e) {
e.printStackTrace();
}
}
@Controller
@Results({
@Result(name="json",type="json"
, params={"root","outDataMap","excludeNullProperties","true"
,"excludeProperties","^ret\\[\\d+\\]\\.city\\.province,^ret\\[\\d+\\]\\.enterprise\\.userinfos","enableGZIP","true"
})
})
public class UserinfoAction extends BaseAction {
@Action(value="login")
public String login(){
if(jsonQueryParam!=null && jsonQueryParam.length()>0)
{
user = JsonMapper.fromJson(jsonQueryParam, TUserinfo.class);
}
Assert.notNull(user);
//RESULT="ret" addOutJsonData: put List<TUserinfo> into outDataMap with key RESULT for struts2 JSONResult
addOutJsonData(RESULT, service.login(user));
return JSON;
}
TransactionalTestExecutionListener
がありません。これは必須であり、TestExecutionListenerを自分で定義しない場合にデフォルトで存在します。ただし、明示的に1つを定義するとすぐに、削除されます。
それを宣言してください:
@TestExecutionListeners({ServiceTestExecutionListener.class, TransactionalTestExecutionListener.class})
3.2.x Springドキュメントの「 Testing-Transaction management 」を参照してください。
楽しい
@RunWith(SpringRunner.class)
@SpringBootTest
@Transactional // The magic is here
public class YourClassTests {
...
}