0

私たちが開始している新しいプロジェクトのSpring Rooを評価しています。私が遭遇したと思われる問題は、データベースにHibernateまたはその他のORMパッケージを使用していないことです。Mybatisを使用しています。つまり、プロジェクトに JPA をインストールしたくないということです。

ヒントを入力するたびに、roo は JPA をインストールする必要があることを教えてくれます (Mybatis は JPA を使用しないため、インストールしたくありません)。しかし、それが本当に私に影響を与えるのは、私がこのようなことをするときです

web mvc scaffold --class ~.web.controller.FirstController

これを返します

Command 'web mvc scaffold --class ~.web.controller.FirstController' was found but is not currently available (type 'help' then ENTER to learn about this command)

これは、roo が JPA なしではこれらの他の機能を許可しないということですか? JPAをインストールせずにrooをだましてこれらの機能を使用させる方法はありますか?

ありがとう

4

1 に答える 1

0

You will need to JPA to use spring roo. However, you can take it out later. You can create have it create repository classes for you. Then you can easily convert these to mybatis style, by adding the mybatis annotations.

于 2012-09-02T10:32:13.460 に答える