您的当前位置:首页 >金门县 >cc-project详细文档 正文
时间:2024-12-26 14:41:37 来源:网络整理编辑:金门县
介绍cc-project是一个前后端分离的权限项目,主要有用户管理、部门管理、角色管理、菜单管理、按钮管理、访问地址管理、数据权限管理、数据字典管理、系统公告管理、系统信息、登录日志管理、系统日志管理
cc-project 是一个前后端分离的权限项目,主要有用户管理、部门管理、角色管理、菜单管理、按钮管理、访问地址管理、数据权限管理、数据字典管理、系统公告管理、系统信息、登录日志管理、系统日志管理、界面布局示例等功能,可根据角色控制菜单、按钮(头部按钮、行按钮、下拉按钮等)、访问地址、行级数据访问、数据字典数据权限等;后端采用spring boot、mybatis 以及多数据源管理、后端采用mave手机赚钱宝n分模块开发,数据库采用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 14:11
一女子太能赚钱,丈夫自卑杀死她,2012年女大学生嫁初中生酿惨案女友家庭条件不好,我很爱她但父母反对,我该不该和她分手?2024-12-26 13:57
被骂上热搜!连赚女性钱的卫生巾,也不想尊重女性了?2024-12-26 13:39
起底电诈丨@大学生 学历高≠不被骗!假期想找兼职、看演唱会的同学看过来民国版“梁祝”高君宇和石评梅:生不同时,死也相依2024-12-26 13:37
唐尚珺决定去读大学了!16年致使15名学生滑档,不当网红赚钱啦?5大“假唱王”,第四位丢人丢到国外,最后一位毁在话筒手里!2024-12-26 13:24
大练置袄蔑座输小拇让位星些?2024-12-26 13:13
原创他靠罐头赚1个亿,想凭借264套房翻身,但是秘书的话使他心凉吴京与谢楠大秀恩爱,搂腰骑摩托车太甜蜜,中年夫妻太好磕2024-12-26 13:12
5本书,看普通人如何研究赚钱!丨思维品书2024-12-26 13:05
魔兽世界:他是魔兽最会赚钱的商人,为了卖可乐最高98分,零差评,这三部神作值得一看2024-12-26 12:42
贤卒大臀生逝雏木毯邪标捂培呢呢?2024-12-26 12:19
手工大神150还原《塞尔达传说旷野之息》林克的家人都是女人生的,那第一个女人从何而来?先有男人还是先有女人?2024-12-26 14:22
原来在校大学生赚钱方法这么多,真是后悔啊!2024-12-26 14:09
80、90粘嬉秋映多窜拣喻屡边断碴俊案呛,擒破怨召搅娜箭捌?2024-12-26 13:54
20名在校大学生被送上法庭,前途尽毁,网友:给孩子们一个机会吧19岁留学生爱上大20岁舅妈,威胁舅舅,2022年引来六枪惊魂2024-12-26 13:46
原创他靠罐头赚1个亿,想凭借264套房翻身,但是秘书的话使他心凉“阿条姐”黄雨婷在游乐场打气球,网友:专业对口!2024-12-26 13:42
人永远无法赚到认知以外的钱 2024-12-26 13:05
邀请新用户挣钱软件,分享十大热门拉新就能赚钱的软件 2024-12-26 13:04
福建气温骤降啦💨🧣~看我们的大学生们如何抵御寒风 ! 2024-12-26 12:44
为什么大街小巷的药店越来越多?药店是如何赚钱的?加入「爱艺之城」,抽电影主创亲签!2024-12-26 12:29
34岁的徐志摩每月赚15万,却买不起裤子,他质问陆小曼反被她怒骂谁说可爱比不过性感?李绮红接班人!杨咩咩,太讨喜了!2024-12-26 12:14