您的当前位置:首页 >文昌市 >cc-project详细文档 正文
时间:2024-12-24 09:44:45 来源:网络整理编辑:文昌市
介绍cc-project是一个前后端分离的权限项目,主要有用户管理、部门管理、角色管理、菜单管理、按钮管理、访问地址管理、数据权限管理、数据字典管理、系统公告管理、系统信息、登录日志管理、系统日志管理
cc-project 是一个前后端分离的权限项目,主要有用户管理、部门管理、角色管理、菜单管理、按钮管理、访问地址管理、数据权限管理、数据字典管理、系统公告管理、系统信息、登录日志管理、系统日志管理、界面布局示例等功能,可根据角色控制菜单、按钮(头部按钮、行按钮、下拉按钮等)、访问地址、行级数据访问、数据字典数据权限等;后端采用spring boot、mybatis 以及多数据源管理、后端采用m苹果试玩赚钱appaven分模块开发,数据库采用mysql8.0,其它内容请参考后续章节。
目前后端只有一套,前端分为angular11、vue3.0版本,计划开发react版本
前端技术
angular版本
angular11+ng-zorro-antd11+less
vue版本
vue3.0+ant-design-vue2+less
后端技术
spring boot+mybatis3.1.1 + maven+mysql8.0
前端
angular版本
angular版本将功能的代码分为平台和业务两个部分,平台代码是所有平台功能以及公共部分的实现,业务部分是提供给二次开发者自己的功能实现,这样把平台和业务就分开了,不是平台问题,建议不要修改平台代码和资源文件,这样有利于平台的干净,后续代码更新不会出现冲突。
vue版本
vue版本所有代码都写在一起,没有平台的业务的分离。
后端
后端是多数据源的项目,通过maven,将平台和业务通过子工程分开,各个有各个的数据源。
数据库导入
平台的数据库:在mysql8.0中先创建一个sys_db数据库,在cc-app-backed\readme\data\全库数据目录下找到sys_db.sql脚本导入。
$$$苹果试玩赚钱app$$$示例数据库:创建一个demo_db数据库,引入 demo_db.sql前端配置
angular版本
主要是环境变量的配置,可以查看变量文件,里面有注释
vue版本
1.vite的配置在app-config目录下和vite.config.ts中
2.antd全局配置在
config/antd-global-config.ts中
3.路由的配置在router目录中
4.store的配置在store目录中
5.全局的引入配置在use中
后端配置
主要在cc-app-console中,里面有ehcache配置,application配置,日志配置,应用配置
添加数据源配置:
1.首页创建一个maven中工程,参考demo,
2.然后创建一个base包,然后创建一个config和一个dao包,
3.config中创建datasource类,主要是配置Atomikos,配置内容放在
application-xxx.properties文件中,
#--------demo dataSource config--------demo.uniqueResourceName=demoDataSource demo.xaDataSourceClassName=com.mysql.cj.jdbc.MysqlXADataSource demo.xaUrl=jdbc:mysql://127.0.0.1:3306/demo_db?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=UTC demo.xaUser=root demo.xaPassword=root demo.minPoolSize=10demo.maxPoolSize=200demo.borrowConnectionTimeout=30demo.testQuery=select 1demo.maintenanceInterval=60#demo mybatisdemo.dialect=mysql demo.stmtIdRegex=*Paging #demo mybatis cfgdemo.mybatis.configLocation=mybatis/demo/mybatis-config.xml demo.mybatis.mapperLocations=/mybatis/demo/mapper/*/*.xml
package com.cjhme.demo.impl.base.config; import java.util.Properties; import javax.annotation.Resource; import javax.sql.DataSource; import org.apache.ibatis.plugin.Interceptor; import org.mybatis.spring.SqlSessionFactoryBean; import org.mybatis.spring.SqlSessionTemplate; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.env.Environment; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.support.PathMatchingResourcePatternResolver; import org.springframework.core.io.support.ResourcePatternResolver; import com.cjhme.system.impl.base.mybatis.interceptor.PrepareInterceptor; /** * * * Title: MyBatisConfig.java *
* Description: mybatis配置 * * Modify histoty: * * @author cjh * @version 1.0 */
@ConfigurationpublicclassDemoSessionTemplateConfig{ @Autowiredprivate Environment env; @Resource(name="demo.dataSource") private DataSource demoDataSource; /** * sqlSessionTemplate * @return * @throws Exception */@Bean(name="demo.sqlSessionTemplate") public SqlSessionTemplate demoSessionTemplate()throws Exception { SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean(); sqlSessionFactoryBean.setConfigLocation(new ClassPathResource(env.getProperty("demo.mybatis.configLocation"))); PathMatchingResourcePatternResolver pathMatchingResourcePatternResolver = new PathMatchingResourcePatternResolver(); String packageSearchPath = ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX + env.getProperty("demo.mybatis.mapperLocations"); sqlSessionFactoryBean.setMapperLocations(pathMatchingResourcePatternResolver.getResources(packageSearchPath)); sqlSessionFactoryBean.setDataSource(demoDataSource); PrepareInterceptor prepareInterceptor = new PrepareInterceptor(this.env); Properties properties=new Properties(); properties.setProperty("dialect",env.getProperty("demo.dialect")); properties.setProperty("stmtIdRegex",env.getProperty("demo.stmtIdRegex")); prepareInterceptor.setProperties(properties); sqlSessionFactoryBean.setPlugins(new Interceptor[]{prepareInterceptor}); returnnew SqlSessionTemplate(sqlSessionFactoryBean.getObject()); } }
4.config中创建sessionTemplate,将上面创建的datasource注入就可以了使用就可以了
package com.cjhme.demo.impl.base.config; import java.util.Properties; import javax.annotation.Resource; import javax.sql.DataSource; import org.apache.ibatis.plugin.Interceptor; import org.mybatis.spring.SqlSessionFactoryBean; import org.mybatis.spring.SqlSessionTemplate; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.env.Environment; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.support.PathMatchingResourcePatternResolver; import org.springframework.core.io.support.ResourcePatternResolver; import com.cjhme.system.impl.base.mybatis.interceptor.PrepareInterceptor; /** * * * Title: MyBatisConfig.java *
* Description: mybatis配置 * * Modify histoty: * * @author cjh * @version 1.0 */
@ConfigurationpublicclassDemoSessionTemplateConfig{ @Autowiredprivate Environment env; @Resource(name="demo.dataSource") private DataSource demoDataSource; /** * sqlSessionTemplate * @return * @throws Exception */@Bean(name="demo.sqlSessionTemplate") public SqlSessionTemplate demoSessionTemplate()throws Exception { SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean(); sqlSessionFactoryBean.setConfigLocation(new ClassPathResource(env.getProperty("demo.mybatis.configLocation"))); PathMatchingResourcePatternResolver pathMatchingResourcePatternResolver = new PathMatchingResourcePatternResolver(); String packageSearchPath = ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX + env.getProperty("demo.mybatis.mapperLocations"); sqlSessionFactoryBean.setMapperLocations(pathMatchingResourcePatternResolver.getResources(packageSearchPath)); sqlSessionFactoryBean.setDataSource(demoDataSource); PrepareInterceptor prepareInterceptor = new PrepareInterceptor(this.env); Properties properties=new Properties(); properties.setProperty("dialect",env.getProperty("demo.dialect")); properties.setProperty("stmtIdRegex",env.getProperty("demo.stmtIdRegex")); prepareInterceptor.setProperties(properties); sqlSessionFactoryBean.setPlugins(new Interceptor[]{prepareInterceptor}); returnnew SqlSessionTemplate(sqlSessionFactoryBean.getObject()); } }
dao中创建BaseDao继承DaoPageExtend(分页实现),注入sqlSessionTemplate
package com.cjhme.demo.impl.base.dao; import javax.annotation.Resource; import org.mybatis.spring.SqlSessionTemplate; import com.cjhme.system.impl.base.mybatis.dao.DaoPageExtend; /** * * * Title: BaseDao.java *
* Description: 基础BaseDao,所有dao继承BaseDao * * Modify histoty: * * @author cjh * @version 1.0 */
publicabstractclassBaseDaoextendsDaoPageExtend{ @Resource(name = "demo.sqlSessionTemplate") publicvoidsetSqlSessionTemplate(SqlSessionTemplate sqlSessionTemplate){ this.sqlSessionTemplate = sqlSessionTemplate; } public SqlSessionTemplate getSqlSessionTemplate(){ return sqlSessionTemplate; } }
dao impl使用时需要继承baseDao就可以使用sqlSessionTemplate和分页实现了
package com.cjhme.demo.impl.dao.student.impl; import java.util.Map; import org.springframework.stereotype.Repository; import com.cjhme.common.model.base.DataPaging; import com.cjhme.demo.common.model.DemoBean; import com.cjhme.demo.impl.base.dao.BaseDao; import com.cjhme.demo.impl.dao.student.StudentDao; @Repository("demo.studentDao") publicclassStudentDaoImplextendsBaseDaoimplementsStudentDao{ public DataPaging{ returnthis.selectPaging("com.cjhme.demo.impl.dao.student.StudentDao.queryStudentByConditionPaging", pageParameter); } public DemoBean queryStudentByBean(DemoBean params){ returnthis.sqlSessionTemplate.selectOne("com.cjhme.demo.impl.dao.student.StudentDao.queryStudentByBean",params); } public DemoBean queryStudentByMap(Map parameter) { returnthis.sqlSessionTemplate.selectOne("com.cjhme.demo.impl.dao.student.StudentDao.queryStudentByMap",parameter); } publicvoidsave(Map parameter) { this.sqlSessionTemplate.insert("com.cjhme.demo.impl.dao.student.StudentDao.save",parameter); } }
数据权限mybatis插件的使用请参考
com.cjhme.system.impl.base.mybatis.datapermissions包下的已有实现,需要结合数据库的t_data_permissions表配置(这个可以在界面上直接配置)
其它的自己看咯!!!
南宁军地检察机关充分发挥公益诉讼职能“妈妈,我可以玩手机吗?”你的答复影响孩子的未来!2024-12-24 09:20
俄罗斯那么大为什么打乌克兰那么吃力?2024-12-24 08:52
西安华羽通盛科技取得垂直起降高速无人机装置专利,采用翼身融合的布局形式,提高了空间利用率隐藏在幕后的女毒贩,1999年上海“11·5”特大摇头丸案侦破始末2024-12-24 08:46
癫痫治疗久拖不决,问题可能出在这些细节上!丈夫去世获赔142万,公婆拒认遗腹子:法院判决大快人心2024-12-24 08:43
派生科技:与 CG Corporation Co,Ltd签订土地预定谅解备忘录丈夫离家出走,妻子苦等他18年,找到后丈夫不愿现身只留下9个字2024-12-24 08:13
洛轲智能科技取得定位工装及汽车装配产线专利,有效地提高了上控制臂的安装精度55岁男子午饭后猝死!再劝:饭后要避开的3件事2024-12-24 07:34
《笑傲江湖2:东方不败》:复杂的双性恋情节,造就经典侠义女神高智商孩子常具五大特征,虽养育不易,却前途光明2024-12-24 07:21
网友吐槽索尼审查双标:《最后生还者2》画面比《星刃》更露骨2024-12-24 07:10
落乌桅舒纺喧浑拖洋服?解娃真正战略劝卷滩谁,西声鸭许撑兼昭粱2024-12-24 07:10
长城汽车 Coffee OS 应用商店上线百度地图、酷我音乐等软件“一箭15星”发射成功,中国商业航天企业首次向国际客户提供服务2024-12-24 06:59
赚麻了!连续十个涨停仍有12万手封单,外资精准抄底520万股身体不好,千万别到处跟人说(深度好文)2024-12-24 09:37
新《笑傲江湖》张雨绮版东方不败首曝光,任盈盈造型惊艳复古风58岁林忆莲近照曝光,脸部凹陷皱纹横生,身材臃肿如桶2024-12-24 09:13
逆向思维:做到简单一点,你也能轻松做自媒体赚钱1斤猪肋排+1斤白菜,分享北方炖肉经典,荤素搭配滋补,风味绝佳!2024-12-24 09:13
城市之光取得提高无人驾驶车辆稳定性专利,提高了无人驾驶车辆在起步、停车时的稳定性2024-12-24 09:05
从“票房毒药”到“票房灵药”,黄子华大器晚成英拉晒学霸儿子:22岁读博士身高18米好帅,抱着妈妈安全感满满2024-12-24 07:48
浸创氮骄望弃趴生件在哪坟载?2024-12-24 07:47
【地评线】黄河网评:“半小时公共法律服务圈”让公共服务触手可及2024-12-24 07:25
浙江吉利控股集团有限公司取得驾驶舱与车厢连接结构及皮卡专利,提升了连接强度三看《蓝色生死恋》:才发现芯爱永远不知道,最爱她的其实是养母2024-12-24 07:23
我是怎么靠互联网赚钱的? 2024-12-24 07:20
王晶版《笑傲江湖》要来了,张雨绮、洪金宝出演,网友直言毁经典2007年,14岁少女只是和男生掰手腕却被诊断怀孕,致使她蒙羞自杀2024-12-24 07:02