English 中文(简体)
弹簧自动捆绑值能够从一个散列图到一个数据持有器吗?
原标题:Can Spring Automagically Bind Values From A HashMap To A Data Holder?

我学习了 Spring 。 我对 Spring 是如何将 HTML 窗体字段的值自动与数据持有器对象的字段和设置器方法相连接的印象非常深刻。 不再有 gazillion 呼叫请求. getParamter (), 并测试每个对象的无效值 。

我想知道春天有没有像这样的东西 在相反的方向, 将信息从数据库中提取出来?

我有一个记录 有大量的田地 从我的数据层出来 通过一个哈斯马普。

Hashmap 密钥与数据库字段名称匹配, 这些密钥也与我的数据持有对象的设置相匹配。 是否有一条路 Spring 可以自动将 Hashmap 的值与数据持有对象捆绑起来, 还是我必须自己这样做?

事先感谢提供的任何资料。

提前感谢您提供的任何信息。

最佳回答

您实际上是在谈论< a href=> http://static.springsource.org/spring/docs/ pext/ spring-framework-reference/html/mvc.html" rel=“nofollow” > Spring MVC 的网络框架。 您可以使用“ Spring” 框架和许多其他网络框架( 或根本没有), 因此 Spring 和 Spring MVC 是不能互换使用的术语 。

这也回答了你的问题:春季MVC是网络层的框架。让网络层了解潜在的持久性技术将是一个可怕的方法,因此直接支持数据库技术将是一个网络框架中巨大的代码嗅觉。

说, Spring 为许多不同的持久性技术提供了大量支持: < a href="http://static.springsources.org/spring/docs/current/spring-framework-reference/html/jdbc.html" rel=“nofollow” >JDBC ,

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签