将 Morphia 与 Spring 结合使用

发布于 2024-10-23 20:11:05 字数 2126 浏览 2 评论 0原文

Morphia 的 Google Code 网站表示它“与 Guice、Spring 和其他 DI 框架配合得很好。”

我目前正在学习 Spring,所以我只是尝试连接这两个工具。 我创建了一个 User POJO 来在 MongoDB 中使用 Morphia 存储用户对象。我还创建了一个从 Morphia 扩展 BasicDAOUserDAO 类来访问对象。

我的 Spring 应用程序上下文配置 XML 如下所示:

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"
           xmlns:aop="http://www.springframework.org/schema/aop">

      <bean class="java.lang.String" id="mongoDb">
        <constructor-arg value="test"/>
      </bean>

      <bean class="com.google.code.morphia.Morphia" id="morphia" />
      <bean class="com.mongodb.Mongo" id="mongo"/>
      <bean class="hu.inagy.testspring.daos.UserDAO" id="userDao">
        <constructor-arg ref="morphia" index="0" />
        <constructor-arg ref="mongo" index="1" />
        <constructor-arg ref="mongoDb" index="2" />
      </bean>

    </beans>

我有一个简单的主类来测试功能:

  public class App 
  {
      public static void main( String[] args )
      {
          ApplicationContext applicationContext = new ClassPathXmlApplicationContext("/app-context.xml");
          UserDAO userDao = (UserDAO) applicationContext.getBean("userDao");

          userDao.deleteByQuery(userDao.createQuery());

          User user = new User();
          user.setName("Test");
          userDao.save(user);

          User ret = userDao.find().get();
          System.out.println("Saved user is: "+ret);
      }
  }

这工作正常,但我不知道我是否按照应有的方式做了所有事情。例如,我还没有在数据存储上调用 ensureIndexes()ensureCaps() 。我的代码也没有对 Morphia 对象上的 POJO 进行显式映射调用。

这些是自动为我完成的还是我应该做其他事情来正确地将 Morphia 与 Spring 一起使用?

The Google Code site of Morphia says it "works great with Guice, Spring, and other DI frameworks."

I'm learning Spring at the moment, so i'm just experimenting with connecting these two tools.
I've created a User POJO to store user objects with Morphia in MongoDB. I've also created a UserDAO class extending BasicDAO from Morphia to access objects.

My Spring application context configuration XML looks like this:

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"
           xmlns:aop="http://www.springframework.org/schema/aop">

      <bean class="java.lang.String" id="mongoDb">
        <constructor-arg value="test"/>
      </bean>

      <bean class="com.google.code.morphia.Morphia" id="morphia" />
      <bean class="com.mongodb.Mongo" id="mongo"/>
      <bean class="hu.inagy.testspring.daos.UserDAO" id="userDao">
        <constructor-arg ref="morphia" index="0" />
        <constructor-arg ref="mongo" index="1" />
        <constructor-arg ref="mongoDb" index="2" />
      </bean>

    </beans>

I have a simple main class to test functionality:

  public class App 
  {
      public static void main( String[] args )
      {
          ApplicationContext applicationContext = new ClassPathXmlApplicationContext("/app-context.xml");
          UserDAO userDao = (UserDAO) applicationContext.getBean("userDao");

          userDao.deleteByQuery(userDao.createQuery());

          User user = new User();
          user.setName("Test");
          userDao.save(user);

          User ret = userDao.find().get();
          System.out.println("Saved user is: "+ret);
      }
  }

This works fine, however i don't know if i did everything as it should be. For example i haven't called ensureIndexes() and ensureCaps() on the datastore. My code also doesn't have an explicit mapping call for the POJOs on the Morphia object.

Are these done for me automatically or should i do other things to use Morphia correctly with Spring?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪也成诗 2024-10-30 20:11:05

我不使用 spring,但这篇文章似乎确切地讨论了您所需要的,一个在应用程序启动时执行操作的钩子: http://leshazlewood.com/2007/07/30/spring-application-bootstrap-data/

您可以在那里执行 Datastore.ensureIndexes/Caps() 。

如果您喜欢的话,您还可以阅读有关使用 @Autowire 和注释而不是 xml 的主题。

http://groups.google.com/group/morphia/browse_thread/thread/1013b17963f29468

I don't use spring but this articles seems to talk about exactly what you need, a hook to do things when you app starts: http://leshazlewood.com/2007/07/30/spring-application-bootstrap-data/

You can do the Datastore.ensureIndexes/Caps() there.

You can also read this thread about using @Autowire and annotations instead of the xml, if you like that stuff.

http://groups.google.com/group/morphia/browse_thread/thread/1013b17963f29468

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文