我有一个带有休眠 MySQL 的 Spring MVC 应用程序。我有以下用于休眠搜索配置的代码:
jpaProperties.put("hibernate.search.default.directory_provide", "filesystem");
jpaProperties.put("hibernate.search.default.indexBase", "C:\\Index");
我需要指定一个文件夹,以便 Hibernate 搜索可以在文件系统中具有索引库。如何在 Bluemix 中实现这一点?
有没有办法使用 Bluemix 中的对象存储服务来实现这一点?