Java:192 基于SSM框架的失物招领信息管理系统
作者主页:舒克日记
简介:Java领域优质创作者、Java项目、学习资料、技术互助
文中获取源码
项目介绍
系统有管理员,用户。
系统中的核心用户是管理员,管理员登录后,通过管理员功能来管理后台系统。主要功能有:首页、个人中心、用户管理、失物招领管理、物品类型管理、失物认领管理、物品挂失管理、寻物论坛、系统管理等功能。
用户包括:首页、个人中心、失物招领管理、失物认领管理、物品挂失管理、寻物论坛等功能。
演示视频:点击查看
环境要求
1.运行环境:最好是java jdk1.8,我们在这个平台上运行的。其他版本理论上也可以。
2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;
3.tomcat环境:Tomcat7.x,8.X,9.x版本均可
4.硬件环境:windows7/8/10 4G内存以上;或者Mac OS;
5.是否Maven项目:是;查看源码目录中是否包含pom.xml;若包含,则为maven项目,否则为非maven.项目
6.数据库:MySql5.7/8.0等版本均可;
技术栈
运行环境:jdk8 + tomcat9 + mysql5.7 + windows10
服务端技术:Java、Spring、SpringMVC、Mybatis,SSM
前端:vue
使用说明
1.使用Navicati或者其它工具,在mysql中创建对应sq文件名称的数据库,并导入项目的sql文件;
2.使用IDEA/Eclipse/MyEclipse导入项目,修改配置,运行项目;
3.将项目中config-propertiesi配置文件中的数据库配置改为自己的配置,然后运行;
运行指导
idea导入源码空间站顶目教程说明(Vindows版)-ssm篇:
http://mtw.so/5MHvZq
源码地址:http://www.codegym.top
运行截图
功能模块截图
项目截图
前台
后台
代码
StringFilterPredicate filterPredicate = new StringFilterPredicate();
filterPredicate.setOperation(StringFilterPredicate.StringOperation.IN);
filterPredicate.setValue(new FilterPredicateValue<>(String.join(",", tenantNameList)));
keyFilter.setPredicate(filterPredicate);
keyFilters.add(keyFilter);
// Prepare list of queried tenanat attributes
List<EntityKey> attributes = List.of(
new EntityKey(EntityKeyType.ATTRIBUTE, TenantConstants.PROVINCE),
new EntityKey(EntityKeyType.ATTRIBUTE, TenantConstants.CITY),
new EntityKey(EntityKeyType.ATTRIBUTE, TenantConstants.CONTACT),
new EntityKey(EntityKeyType.ATTRIBUTE, TenantConstants.TENANT_STATUS),
new EntityKey(EntityKeyType.ATTRIBUTE, TenantConstants.DISTRICT),
new EntityKey(EntityKeyType.ATTRIBUTE, TenantConstants.MODIFIER_ID),
new EntityKey(EntityKeyType.ATTRIBUTE, TenantConstants.MODIFY_TIME),
new EntityKey(EntityKeyType.ATTRIBUTE, TenantConstants.ADDRESS_DETAIL),
new EntityKey(EntityKeyType.ATTRIBUTE, TenantConstants.DESCRIPTION)
);
// Prepare page link
EntityDataPageLink entityDataPageLink = new EntityDataPageLink(tenantList.size(), 0, "", null);
// Create entity query with provided entity filter, key filter, queried fields and page link
EntityDataQuery dataQuery =
new EntityDataQuery(typeFilter, entityDataPageLink, null, attributes, keyFilters);
PageData<EntityData> entityPageData = client.findEntityDataByQuery(dataQuery);