您的当前位置:首页 >周口市 >cc-project详细文档 正文
时间:2024-12-25 02:35:00 来源:网络整理编辑:周口市
介绍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表配置(这个可以在界面上直接配置)
其它的自己看咯!!!
美股异动丨Take-Two互动软件盘后涨53%,正为明年推出大热游戏《侠盗猎车手GTA 6》做准备原创古代女人丧夫,为何宁愿守寡也不改嫁,除了守贞节还有一点很残忍2024-12-25 02:26
青年早新闻 全国医保个人账户跨省共济工作正式启动首播将至!都市职场剧《橙色光芒》来袭,阵容不错,又有大剧追了2024-12-25 02:22
活久见!知名开源项目竟被无理要求闭源:影响赚钱了微胖女孩ootd!2024-12-25 01:31
亮点纷呈!坡头消防圆满完成消防宣传月系列活动 2024-12-25 01:26
从提价到降价:利润收窄后,该如何赚钱?陈乔恩被自己的婚纱照美到了,45岁的她好可爱,这不就是美女的日常操作嘛2024-12-25 01:22
魔兽世界:60版本影响最深远蓝色双手斧,最后款部落玩家不认识艳压男编剧、急倒高亚麟,闫妮是怎么在微醺赛道一路狂奔的?2024-12-25 01:13
多多买菜停止本地生活业务?拼多多:本地生活业务确实停掉 但多多买菜正常运行我可以错过很多人,唯独不想错过你2024-12-25 01:08
文明交通 携手共创丨河源市“美丽乡村行”交通安全月巡回宣传活动——埔前站 2024-12-25 01:05
提升市民交通安全文明意识,临清交警开展安全月集中宣传活动《五朵金花》莫梓江去世:曾红遍全国,为啥到死仍是二级演员?2024-12-25 00:49
因新增反作弊,Steam Deck 不再兼容《GTA 5》广州钉子户梁蓉:30平房子要价1500万,苦守十几年结局令人唏嘘2024-12-25 00:20
河北辛集中考千人超600分, 最高分696! 网友 河北中考满分不才650琼瑶御用导演刘立立:被曝为爱摘子宫,和原配共侍一夫45年不后悔2024-12-25 02:27
拼多多现在10个不能做的事你是什么“脸型”就留什么发型!尤其方脸、圆脸,选错显老十岁2024-12-25 02:25
赚钱项目 如何在网络上赚钱? 2024-12-25 02:11
Steam 新一期游戏销量榜公布:《使命召唤:黑色行动 6》三连冠赵又廷:“整容式演技”的鼻祖,佛系演戏出道15年作品只有23部2024-12-25 01:09
参加百万网红赚钱项目被骗?殷世航被指引流“诈骗”活动,涉及金额高达千万小红书「好事发生」IP携WHC万赫希关注情绪健康,共谱品牌公益营销新篇章2024-12-25 00:57
中建七局(江苏)建设有限公司举办2024年安全月活动暨“双推”劳动竞赛启动仪式“还好生娃早”,江苏家长卷出花,孩子上午考试,妈妈中午交卷2024-12-25 00:50
《神秘海域》里荷兰弟做了什么,让成龙直呼“想合作”1963年彭小枫报考哈军工政审被卡,张爱萍彭雪枫之子也不能信任?2024-12-25 00:48
金乡县综合行政执法局召开2024年消防安全月活动部署会议婆子再接再厉,终于得手不容易啊!阿杜却拿他妈没办法,故意的吗2024-12-25 00:38
马竞赚翻了!西蒙尼爱子闪耀西甲,带队5连胜,阿根廷队又添强援独家对话 赵露思:和端午一样,努力做好当下2024-12-24 23:55
一套采集软件2998元,教学博主们靠搬运视频在京东闷声赚钱林心如新烫了羊毛卷年轻20岁,穿衬衫+小白裤,洋气得像换了个人2024-12-24 23:50