您的当前位置:首页 >吐鲁番地区 >cc-project详细文档 正文
时间:2024-12-26 10:51:34 来源:网络整理编辑:吐鲁番地区
介绍cc-project是一个前后端分离的权限项目,主要有用户管理、部门管理、角色管理、菜单管理、按钮管理、访问地址管理、数据权限管理、数据字典管理、系统公告管理、系统信息、登录日志管理、系统日志管理
cc-project 是一个前后端分离的权限项目,主要有用户管理、部门管理、角色管理、菜单管理、按钮管理、访问地址管理、数据权限管理、数据字典管理、系统公告管理、系统信息、登录日志管理、系统日志管理、界面布局示例等功能,可根据角色控制菜单、按钮(头部按钮、行按钮、下拉按钮等)、访问地址、行级数据访问、数据字典数据权限等;后端采用spring boot、mybatis 以及多数据源管理、后端采手机赚钱用maven分模块开发,数据库采用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脚本导入。
示例数据库手机赚钱:创建一个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-26 10:38
中石油昆仑燃气有限公司吉林城燃分公司2024年度安全月活动圆满收官40年前的老照片:戴安娜与他人惊艳共舞,人群中的查尔斯满脸不快2024-12-26 10:09
《我是刑警》深度解析,揭示警察背后的人性光辉看望病人,不管有没有钱,都不要带这3样东西,容易惹出麻烦2024-12-26 09:56
福建气温骤降啦💨🧣~看我们的大学生们如何抵御寒风 ! 2024-12-26 09:31
20名在校大学生被送上法庭,前途尽毁,网友:给孩子们一个机会吧19岁留学生爱上大20岁舅妈,威胁舅舅,2022年引来六枪惊魂2024-12-26 08:32
青年早新闻 全国医保个人账户跨省共济工作正式启动首播将至!都市职场剧《橙色光芒》来袭,阵容不错,又有大剧追了2024-12-26 08:21
起底电诈丨@大学生 学历高≠不被骗!假期想找兼职、看演唱会的同学看过来民国版“梁祝”高君宇和石评梅:生不同时,死也相依2024-12-26 08:21
货拉拉开展第五届信息安全月活动,强化信息安全建设2024-12-26 08:19
东亚做题家,“卷不过”印度润人为什么宝宝想睡不睡,还又哭又闹的?宝爸:想破脑子也想不到这个2024-12-26 08:09
广西一女大学生:校门口卖糖葫芦,遭多名男子威胁,更多细节曝光早教,到底要不要上呢?过来人告诉你2024-12-26 08:05
苹果 App Store Connect 新增“精选提名”:开发者可申请推广其应用2024-12-26 10:47
广西一女大学生:校门口卖糖葫芦,遭多名男子威胁,更多细节曝光男人奖金发6万,晚餐妻子端来剩菜:养你父母哥嫂6口,只配吃这个2024-12-26 10:41
超好玩的冒险游戏单机游戏推荐麦家小说改编电影,把《解密》和《风声》放在一起,差距就出来了2024-12-26 09:28
我是刑警:与于和伟七搭演父女,她古装造型令人惊艳演员徐梵溪:出道17年不温不火,前男友娶李小冉2024-12-26 09:22
风衣搭配踝靴,打造4、50岁女性的高级显瘦气质穿搭医生强调:70岁以上的老人,宁可躺着,也不要在这4个时候走动2024-12-26 09:15
美股异动丨Take-Two互动软件盘后涨53%,正为明年推出大热游戏《侠盗猎车手GTA 6》做准备原创古代女人丧夫,为何宁愿守寡也不改嫁,除了守贞节还有一点很残忍2024-12-26 09:01
首款AI手机发布,苹果进入“一键智能时代”!有哪些亮点2024-12-26 08:51
马斯切拉诺:我能做好执教迈阿密国际的工作,世俱杯目标竞争冠军《小巷人家》大结局圆满,笑着看完后发现,黄玲真的是太有福气了2024-12-26 08:24
经济下行,辛苦钱该赚还是要赚的2024-12-26 08:16
惠及更广大人群 全国医保个人账户跨省共济工作正式启动2005年,富商花8亿建108米海上观音像,4年后死在水中,死因成谜2024-12-26 08:09