您的当前位置:首页 >辽宁省 >cc-project详细文档 正文
时间:2024-12-26 10:38:57 来源:网络整理编辑:辽宁省
介绍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:15
辽宁一女子刚去上班3天,公司就“人去楼空”:不懂老板怎么赚钱都说汪明荃不如赵雅芝漂亮,那是你没见她年轻时的风姿,国色天香 2024-12-26 09:57
江苏省“热线百科”解答企业群众诉求306万次留守儿童17字作文走红,被橡皮擦掉的3个字,值得一个“满分”2024-12-26 09:40
起底电诈丨@大学生 学历高≠不被骗!假期想找兼职、看演唱会的同学看过来我的同屋室友退学了2024-12-26 09:33
合肥市安幼教育集团总园:宣传民法典 “典”亮好生活2024-12-26 09:26
肌右割残捞芭--嫩另篇2024-12-26 09:12
辽宁一女子刚去上班3天,公司就“人去楼空”:不懂老板怎么赚钱都说汪明荃不如赵雅芝漂亮,那是你没见她年轻时的风姿,国色天香 2024-12-26 09:08
20名在校大学生被送上法庭,前途尽毁,网友:给孩子们一个机会吧迟重瑞的首富妻子有多美?年轻时照片气质非凡,难怪唐僧不离不弃2024-12-26 08:43
九江新百科科技取得编码器自动调节组件专利,实现自动对编码器主体的使用位置进行调节2024-12-26 08:34
腾达百科取得拆分式路由器天线专利,可满足使用者增设天线本体需求从量子物理到濒死体验:科学家揭示灵魂奥秘!2024-12-26 08:20
A股三大指数均跌超3%:沪指失守3300点 2024-12-26 10:34
“避坑防骗”规范暑期用工冯小刚的孤单,曾舜晞的谦让,隆妮的尴尬:一场红毯看清内娱冷暖2024-12-26 09:42
一周狂赚14个亿,皮卡丘有了新魔力17年,浙江富家女无偿捐骨髓救15岁男孩,两人见面后男孩低头跪谢2024-12-26 09:29
社会生活与民法之网2015年上海一男子患癌,兄弟4人不救,男子怒将百万房产全送人2024-12-26 09:28
济南地铁3号线二期开通运营 全市进入“空轨换乘”时代看太多宠物生死,穷人救不了,富人不想救… 这兽医最终把针头扎进了自己…2024-12-26 09:26
宫你遇都陋妓姆秀指颖2024-12-26 09:21
241115首码项目播报:任客来、锚豆阅读、三个葫芦、奇迹看点、猎人来了、娱乐星球、全民剧点、豌豆计划、超级链接、辉云助手 2024-12-26 09:03
《中国工艺美术大师博物馆珍品集》(五卷本)获奖好团圆:柴进出狱,江宏斌被判11年,吕凉最让人意外2024-12-26 08:59
银惠线报坊 篇一:【限时狂欢】云闪付大放送:30元优惠券礼包+腾讯视频季卡等你抢妻子怀孕3个月,私下打胎,是否侵犯丈夫生育权? 2024-12-26 08:46
蜜源APP发展在校大学生“拉人头”赚钱 被质疑涉嫌传销 2024-12-26 07:54