码迷,mamicode.com
首页 >  
搜索关键字:domain controller    ( 14266个结果
AngularJS 实现图片旋转(CSS)
图片旋转基于 CSS:`transform:rotate(**deg)` 实现,Angular 用于动态绑定 deg 数: controller:(其实可以省略) lang:js $scope.img = {src:"xxx.png", rotate=0}; HTML: lang:html 向右转 向左转...
分类:Web程序   时间:2014-10-15 18:02:01    阅读次数:337
【转】ASP.NET MVC学习笔记-Controller的ActionResult
1. 返回ViewResult public ActionResult Index() { ViewData["Message"] = "Welcome to asp.net MVC!"; return View(); } public ActionResult Index(){ ViewData[...
分类:Web程序   时间:2014-10-15 15:59:00    阅读次数:209
TCP之简单回传
本文介绍Tcp的简单应用:简单的 回传(即客户端发送什么,服务器就转发给客户端什么)。主要包含以下几个函数原型:服务器端://服务器端主要函数原型:int socket(int domain, int type, int protocol);int bind( int sockfd , const ...
分类:其他好文   时间:2014-10-15 04:16:59    阅读次数:254
IOS7的状态栏和导航栏
iOS 7中默认的导航栏 在开始定制之前,我们先来看看iOS 7中默认导航栏的外观。通过Xcode用Single View Controller模板创建一个工程。然后将view controller嵌入到一个navigation controller中。如果你不想从头开始...
分类:移动开发   时间:2014-10-15 01:24:19    阅读次数:509
iOS8中提示框的使用UIAlertController(UIAlertView和UIActionSheet二合一)
iOS8推出了几个新的“controller”,主要是把类似之前的UIAlertView变成了UIAlertController,这不经意的改变,貌似把我之前理解的“controller”一下子推翻了~但是也无所谓,有新东西不怕,学会使用了就行。接下来会探讨一下这些个新的Controller。- (...
分类:移动开发   时间:2014-10-14 17:45:45    阅读次数:234
IllegalArgumentException: Unknown entity
需要使用persistence.xml进行配置。 1 2 3 4 org.hibernate.ejb.HibernatePersistence 5 dataSource --> 6 net.etec.ftm.domain.City 7 net.etec.ftm.do...
分类:其他好文   时间:2014-10-14 17:39:09    阅读次数:208
ember.js:使用笔记6 页面中插入效果
在某些情况下,我们需要根据数据生成某些效果;由于每个模版的controller可能不同,在不同页面之间跳转可能会无法随即更新的问题。controller:直接使用标签:{{}},适用于在子项目内切换的时候及时更新;view:使用didInsertElement: 适用于在其他页面切换到当前view的...
分类:Web程序   时间:2014-10-14 16:35:28    阅读次数:195
基于注解的SpringMVC
SpringMVC基于注解的请求      在使用SpringMVC注解前,首先要启用注解,在springMVC3.x版本之后提供了非常简单的启用注解方法只需要的-servlet.xml中加上,另外还需要告诉应用程序哪些包使用注解,在-servlet.xml中加入说明controller包中使用注解,那么在启动应用程序时,就会自动扫描controller中的注解,找到请求映射与之对应的contr...
分类:编程语言   时间:2014-10-14 13:57:58    阅读次数:277
【图解】weblogic.management.ManagementException: [Deployer:149164]The domain edit lock is owned by
在weblogic服务器上两个工程部署来回切换,经常控制台报告以下错误: <An exception occurred while deploying an application _appsdir_PactInfo_dir: weblogic.management.ManagementException: weblogic.management.ManagementExce...
分类:Web程序   时间:2014-10-14 13:12:28    阅读次数:355
管理 Hibernate 的二级缓存
Hibernate 在不同的缓存区域保存不同的类/集合。 对于类而言,区域的名称是类名。如:com.atguigu.domain.Customer 对于集合而言,区域的名...
分类:Web程序   时间:2014-10-13 14:41:19    阅读次数:169
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!