我正在使用spring数据来存储和从数据库中获取记录。最初数据库是MySQL,但现在我想为mongodb配置相同的应用程序。请使用MysQL的应用程序资源属性。
Dim sFileName As String = Session("UserName") + " " +cboCustomer.Text.Replace(",", "-") + ".xls"
Dim StrHtmlGenerate As New StringBuilder() Dim StrExport As New StringBuilder()
Response.ContentType = "application/x-msexcel"
Response.AddHeader("Content-Disposition", "attachment; filename=" + sFileName)
Response.ContentEncoding = Encoding.UTF8 Dim tw As New StringWriter()
Dim hw As New HtmlTextWriter(tw) litTable.RenderControl(hw) Response.Write(tw.ToString())
Response.End()
任何人都可以告诉mongodb的配置更改吗?
答案 0 :(得分:0)
MySQL是一个RDBMS,MongoDB是一个文档数据库。
Hibernate以OGM(对象/网格映射器)形式支持NOSQL数据库,OGM上的文档http://docs.jboss.org/hibernate/ogm/4.2/reference/en-US/html/
请参阅以下示例,了解Spring,Hibernate和MongoDB https://pragmaticintegrator.wordpress.com/2011/07/14/use-spring-and-hibernate-with-mongodb/
此外,如果你使用spring,如果你想删除Hibernate,你可以去Spring MongoTemplate 请参阅以下网址中的示例 https://spring.io/guides/gs/accessing-data-mongodb/