上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 168 下一页
摘要: 前言 这篇文本讲述了这个框架的使用方式,及一些疑问的答疑,更加精准的使用这个框架来建立功能 对项目的了解 目录 我们只需要分为几步就能快速的建立一个具有权限的功能 表设计及约定 生成代码(代码生成器及TT模板) 配置(URL的配置及权限设置) 1.表设计及约定 框架表的设计必须遵循约定来设计,否则生 阅读全文
posted @ 2019-07-30 09:12 DarJeely 阅读(441) 评论(0) 推荐(0) 编辑
摘要: 核心架构和之前的开源项目SSO.Passport.IdentityServer保持一致 实线代表实际引用,虚线代表通过反射的方式引用; 应用层的真实引用只需要引用Common和Model以及IBLL即可,从而达到项目间的解耦,但由于生成和发布的原因,导致需要反射引用的类库不能生成到应用层目录下,所以 阅读全文
posted @ 2019-07-29 16:33 DarJeely 阅读(1253) 评论(0) 推荐(0) 编辑
摘要: 工作流配置文件及说明如下: { "Logging": { "LogLevel": { "Default": "Warning" } }, "AllowedHosts": "*", "Session": { "CookieName": "RoadFlowCore.Session", //cookie域 阅读全文
posted @ 2019-07-29 14:19 DarJeely 阅读(360) 评论(0) 推荐(0) 编辑
摘要: RoadFlow解决方案如下: RoadFlow.Business:业务层 RoadFlow.Integrate:组织机构获取层(如果你系统要使用第三方组织架构的时候修改这里面的方法即可) RoadFlow.Cache:缓存 RoadFlow.Data:数据层 RoadFlow.Mapper:如果映 阅读全文
posted @ 2019-07-29 09:40 DarJeely 阅读(601) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace WebMvc { public class MyController : Controller { /// //... 阅读全文
posted @ 2019-07-29 09:27 DarJeely 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 项目文件结构: 很明了一个标准的三层架构的系统。 表示层:Web 业务层:Business 数据访问层:Data 另外存在缓存层:Cache缓存 增加公共使用类库:Utility 下面以一个实例(系统登陆为例)来讲解各层之间如何调用: 系统登陆界面跳到Login1.aspx页面。 查看后面登陆界面代 阅读全文
posted @ 2019-07-29 09:18 DarJeely 阅读(874) 评论(0) 推荐(0) 编辑
摘要: 解决方法:~~看下数据库的延迟段创建参数SQL> show parameter DEFERRED_SEGMENT_CREATIONNAME TYPE VALUE deferred_segment_creation boolean TRUE 首先先说下 对DEFERRED_SEGMENT_CREATI 阅读全文
posted @ 2019-07-27 10:32 DarJeely 阅读(1862) 评论(0) 推荐(0) 编辑
摘要: at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:190) at org.springframework.aop.framew 阅读全文
posted @ 2019-07-26 14:59 DarJeely 阅读(951) 评论(1) 推荐(0) 编辑
摘要: INFO:HibernateSimpleDao queryForListWithSql:SELECT site_id as id ,MAX(case attr_name when 'siteName' then attr_value END) as siteName,MAX(case attr_na 阅读全文
posted @ 2019-07-26 09:59 DarJeely 阅读(972) 评论(0) 推荐(0) 编辑
摘要: create table testsequence ( userId number(10) primary key, userName varchar2(30)) create sequence JEECMSV93.sequence_testsequenceminvalue 1maxvalue 99 阅读全文
posted @ 2019-07-25 17:20 DarJeely 阅读(133) 评论(0) 推荐(0) 编辑
上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 168 下一页