java,Morphia 如何在使用 Morphia 查找方法时比较字符串
我对此很陌生,所以就开始吧。
尝试从 MongoDb 获取名为“Bob”的用户。
我有:
UserData ud = MonConMan.instance().getDb().find(UserData.class, "name","bob").get();
如果“bob”大写“Bob”,则无法找到它。
我知道我可以获取 List
并执行 equalsIgnoreCase
但
我可以使用一些运算符吗?
我有用户登录,必须测试他们是否已注册。用户可以以任何他喜欢的方式输入他的名字,因此必须找到一种 equalsIgnoreCase 的方法。是的,这是一个问题,如果有大约 10,000 个名称,我无法获取所有名称并执行 equalsIgnoreCase 操作。当然,最初可以将所有用户名保存为小写,但这会破坏名称的视觉外观。
查看 wiki 但看不到任何内容。
Im new to this so here goes.
Trying to get a user called "Bob" from the MongoDb.
I have the:
UserData ud = MonConMan.instance().getDb().find(UserData.class, "name","bob").get();
The "bob" cannot be found if it has capital "Bob".
I understand i can get a List
and do equalsIgnoreCase
but are
there some Operators i can use?
I have users logging on and must test to see if they are registered. A user can type his name anyway he likes so must find a way to equalsIgnoreCase. Yea this is a problem, i cannot get all names and do equalsIgnoreCase, if there are like 10,000. One could of course initially save all user names in lowercase but that would destroy the visual appearance of the name.
looking at the wiki but cannot see any..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用java正则表达式,就像这样。
(我不擅长正则表达式,所以您可能已经阅读过
$&
^某处。)
您应该确保用户名您用来验证新用户在整个系统中应该是唯一的。
Use java regex, like this.
(I am not good at regex, so you may have read about
$&
^somewhere. )
You should be sure that the user names you are using to validate a new user should be unique across your system.
最终保留了两个字段,例如
- 小写用户名
- 原始用户名
这样我可以使用小写用户名搜索用户
Ended up keeping two fields like
- lowercaseusername
- originalusername
This way i could search for a user using the lowercaseusername
您可以使用以下代码查找
UserData
的名称:在我的应用程序中,此代码返回所有具有字段
name
的UserData
,其中“鲍勃”值。代码也可以是这样的:
这些代码将位于扩展
BasicDao
的UserDataDao
中,并在构造函数中从吗啡接收数据存储。You can make find a name of a
UserData
using this code :In my application, this code return all
UserData
that haves a fieldname
with "bob" value.The code can be this way too :
These codes will be in a
UserDataDao
that extendsBasicDao
, and receives in the construtor the datastore from morphia.