码迷,mamicode.com
首页 >  
搜索关键字:spring data mongodb    ( 115491个结果
spring AOP详解〇
AOP正在成为软件开发的下一个圣杯。使用AOP,你可以将处理aspect的代码注入主程序,通常主程序的主要目的并不在于处理这些aspect。AOP可以防止代码混乱。 为了理解AOP如何做到这点,考虑一下记日志的工作。日志本身不太可能是你开发的主程序的主要任务。如果能将“不可见的”、通用的日志代码注入...
分类:编程语言   时间:2014-05-17 02:58:15    阅读次数:383
spring MVC环境搭建
1、新建web项目,并在web.xml加入spring mvc的servlet springMVC org.springframework.web.servlet.DispatcherServlet contextConfigLocation ...
分类:编程语言   时间:2014-05-17 01:57:17    阅读次数:528
[渣译文] 使用 MVC 5 的 EF6 Code First 入门 系列:为ASP.NET MVC应用程序更新相关数据
这是微软官方教程Getting Started with Entity Framework 6 Code First using MVC 5 系列的翻译,这里是第六篇:为ASP.NET MVC应用程序更新相关数据原文:Updating Related Data with the Entity Fra...
分类:Web程序   时间:2014-05-17 01:28:45    阅读次数:510
C#实体转换
using System; using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Reflection; /// /// 实体阅读器类,可以从DataTa...
分类:其他好文   时间:2014-05-17 00:20:57    阅读次数:341
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.【转】
今天碰到了一个查询异常问题,上网查了一下,感谢原创和译者如果你使用的数据库连接类是 the Data Access Application Blocks "SqlHelper" 或者 SqlClient Class , 你在执行一个很费时的SQL 操作时候,可能就会碰到下面的超时异常。-------...
分类:其他好文   时间:2014-05-16 23:19:16    阅读次数:333
spring mvc对异步请求的处理
在spring mvc3.2及以上版本增加了对请求的异步处理,是在servlet3的基础上进行封装的。1、修改web.xml...1.1、声明version="3.0",声明web-app_3_0.xsd1.2、为servlet或者filter设置启用异步支持:true,修改WEB应用的web.xm...
分类:编程语言   时间:2014-05-16 22:38:19    阅读次数:480
Sample Ant Build File - WAR--reference
I am using the Spring SimpleFormControllerexampleto illustrate the build process. The figure below shows the structure of the web application.All the ...
分类:其他好文   时间:2014-05-16 22:32:09    阅读次数:402
复习一下单链表的常用操作
复习一下单链表的常用操作,包括单链表的创建、插入、删除、排序、逆置以及打印输出等。#includeusing namespace std;typedef struct Single_link{ int data; struct Single_link *next;}node;//单链表的...
分类:其他好文   时间:2014-05-16 22:14:34    阅读次数:397
使用spring的@Async异步执行方法
应用场景:1、某些耗时较长的而用户不需要等待该方法的处理结果2、某些耗时较长的方法,后面的程序不需要用到这个方法的处理结果时在spring的配置文件中加入对异步执行的支持 使用方法import org.springframework.scheduling.an...
分类:编程语言   时间:2014-05-16 22:11:38    阅读次数:343
FAILED TO DO DATA ASSOCIATION FOR OES DOMAIN(ORA_01017)
Error log:Problem Description-------------------1.Prepare DatabaseRun the RCU utilityCreate Prefix: DEVSelect:IdentityManagement->Oracle Adaptive Acce...
分类:其他好文   时间:2014-05-16 21:18:44    阅读次数:426
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!