当前位置: 首页 > news >正文

广西网站seo做微网站公司简介

广西网站seo,做微网站公司简介,软件怎么做出来的,交友小程序开发末尾获取源码 开发语言#xff1a;Java Java开发工具#xff1a;JDK1.8 后端框架#xff1a;SSM 前端#xff1a;采用JSP技术开发 数据库#xff1a;MySQL5.7和Navicat管理工具结合 服务器#xff1a;Tomcat8.5 开发软件#xff1a;IDEA / Eclipse 是否Maven项目#x… 末尾获取源码 开发语言Java Java开发工具JDK1.8 后端框架SSM 前端采用JSP技术开发 数据库MySQL5.7和Navicat管理工具结合 服务器Tomcat8.5 开发软件IDEA / Eclipse 是否Maven项目是 目录 一、项目简介 二、系统功能 用户信息管理 教师信息管理 设计题目管理 公告信息管理 三、核心代码 登录相关 文件上传 封装 四、总结 一、项目简介 现代经济快节奏发展以及不断完善升级的信息化技术让传统数据信息的管理升级为软件存储归纳集中处理数据信息的管理方式。本高校毕业选题管理系统就是在这样的大环境下诞生其可以帮助管理者在短时间内处理完毕庞大的数据信息使用这种软件工具可以帮助管理人员提高事务处理效率达到事半功倍的效果。此高校毕业选题管理系统利用当下成熟完善的SSM框架使用跨平台的可开发大型商业网站的Java语言以及最受欢迎的RDBMS应用软件之一的Mysql数据库进行程序开发.高校毕业选题管理系统的开发根据操作人员需要设计的界面简洁美观在功能模块布局上跟同类型网站保持一致程序在实现基本要求功能时也为数据信息面临的安全问题提供了一些实用的解决方案。可以说该程序在帮助管理者高效率地处理工作事务的同时也实现了数据信息的整体化规范化与自动化。 二、系统功能 用户信息管理 此页面提供给管理员的功能有用户信息的查询管理可以删除用户信息、修改用户信息、新增用户信息还进行了对用户名称的模糊查询的条件 教师信息管理 此页面提供给管理员的功能有查看已发布的教师信息数据修改教师信息教师信息作废即可删除。 设计题目管理 此页面提供给管理员的功能有根据设计题目进行条件查询还可以对设计题目进行新增、修改、查询操作等等。 公告信息管理 此页面提供给管理员的功能有根据公告信息进行新增、修改、查询操作等等。 三、核心代码 登录相关 package com.controller;import java.util.Arrays; import java.util.Calendar; import java.util.Date; import java.util.Map;import javax.servlet.http.HttpServletRequest;import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.RestController;import com.annotation.IgnoreAuth; import com.baomidou.mybatisplus.mapper.EntityWrapper; import com.entity.TokenEntity; import com.entity.UserEntity; import com.service.TokenService; import com.service.UserService; import com.utils.CommonUtil; import com.utils.MD5Util; import com.utils.MPUtil; import com.utils.PageUtils; import com.utils.R; import com.utils.ValidatorUtils;/*** 登录相关*/ RequestMapping(users) RestController public class UserController{Autowiredprivate UserService userService;Autowiredprivate TokenService tokenService;/*** 登录*/IgnoreAuthPostMapping(value /login)public R login(String username, String password, String captcha, HttpServletRequest request) {UserEntity user userService.selectOne(new EntityWrapperUserEntity().eq(username, username));if(usernull || !user.getPassword().equals(password)) {return R.error(账号或密码不正确);}String token tokenService.generateToken(user.getId(),username, users, user.getRole());return R.ok().put(token, token);}/*** 注册*/IgnoreAuthPostMapping(value /register)public R register(RequestBody UserEntity user){ // ValidatorUtils.validateEntity(user);if(userService.selectOne(new EntityWrapperUserEntity().eq(username, user.getUsername())) !null) {return R.error(用户已存在);}userService.insert(user);return R.ok();}/*** 退出*/GetMapping(value logout)public R logout(HttpServletRequest request) {request.getSession().invalidate();return R.ok(退出成功);}/*** 密码重置*/IgnoreAuthRequestMapping(value /resetPass)public R resetPass(String username, HttpServletRequest request){UserEntity user userService.selectOne(new EntityWrapperUserEntity().eq(username, username));if(usernull) {return R.error(账号不存在);}user.setPassword(123456);userService.update(user,null);return R.ok(密码已重置为123456);}/*** 列表*/RequestMapping(/page)public R page(RequestParam MapString, Object params,UserEntity user){EntityWrapperUserEntity ew new EntityWrapperUserEntity();PageUtils page userService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.allLike(ew, user), params), params));return R.ok().put(data, page);}/*** 列表*/RequestMapping(/list)public R list( UserEntity user){EntityWrapperUserEntity ew new EntityWrapperUserEntity();ew.allEq(MPUtil.allEQMapPre( user, user)); return R.ok().put(data, userService.selectListView(ew));}/*** 信息*/RequestMapping(/info/{id})public R info(PathVariable(id) String id){UserEntity user userService.selectById(id);return R.ok().put(data, user);}/*** 获取用户的session用户信息*/RequestMapping(/session)public R getCurrUser(HttpServletRequest request){Long id (Long)request.getSession().getAttribute(userId);UserEntity user userService.selectById(id);return R.ok().put(data, user);}/*** 保存*/PostMapping(/save)public R save(RequestBody UserEntity user){ // ValidatorUtils.validateEntity(user);if(userService.selectOne(new EntityWrapperUserEntity().eq(username, user.getUsername())) !null) {return R.error(用户已存在);}userService.insert(user);return R.ok();}/*** 修改*/RequestMapping(/update)public R update(RequestBody UserEntity user){ // ValidatorUtils.validateEntity(user);userService.updateById(user);//全部更新return R.ok();}/*** 删除*/RequestMapping(/delete)public R delete(RequestBody Long[] ids){userService.deleteBatchIds(Arrays.asList(ids));return R.ok();} }文件上传 package com.controller;import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Arrays; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Random; import java.util.UUID;import org.apache.commons.io.FileUtils; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.util.ResourceUtils; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile;import com.annotation.IgnoreAuth; import com.baomidou.mybatisplus.mapper.EntityWrapper; import com.entity.ConfigEntity; import com.entity.EIException; import com.service.ConfigService; import com.utils.R;/*** 上传文件映射表*/ RestController RequestMapping(file) SuppressWarnings({unchecked,rawtypes}) public class FileController{Autowiredprivate ConfigService configService;/*** 上传文件*/RequestMapping(/upload)public R upload(RequestParam(file) MultipartFile file,String type) throws Exception {if (file.isEmpty()) {throw new EIException(上传文件不能为空);}String fileExt file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(.)1);File path new File(ResourceUtils.getURL(classpath:static).getPath());if(!path.exists()) {path new File();}File upload new File(path.getAbsolutePath(),/upload/);if(!upload.exists()) {upload.mkdirs();}String fileName new Date().getTime().fileExt;File dest new File(upload.getAbsolutePath()/fileName);file.transferTo(dest);FileUtils.copyFile(dest, new File(C:\\Users\\Desktop\\jiadian\\springbootl7own\\src\\main\\resources\\static\\upload/fileName));if(StringUtils.isNotBlank(type) type.equals(1)) {ConfigEntity configEntity configService.selectOne(new EntityWrapperConfigEntity().eq(name, faceFile));if(configEntitynull) {configEntity new ConfigEntity();configEntity.setName(faceFile);configEntity.setValue(fileName);} else {configEntity.setValue(fileName);}configService.insertOrUpdate(configEntity);}return R.ok().put(file, fileName);}/*** 下载文件*/IgnoreAuthRequestMapping(/download)public ResponseEntitybyte[] download(RequestParam String fileName) {try {File path new File(ResourceUtils.getURL(classpath:static).getPath());if(!path.exists()) {path new File();}File upload new File(path.getAbsolutePath(),/upload/);if(!upload.exists()) {upload.mkdirs();}File file new File(upload.getAbsolutePath()/fileName);if(file.exists()){/*if(!fileService.canRead(file, SessionManager.getSessionUser())){getResponse().sendError(403);}*/HttpHeaders headers new HttpHeaders();headers.setContentType(MediaType.APPLICATION_OCTET_STREAM); headers.setContentDispositionFormData(attachment, fileName); return new ResponseEntitybyte[](FileUtils.readFileToByteArray(file),headers, HttpStatus.CREATED);}} catch (IOException e) {e.printStackTrace();}return new ResponseEntitybyte[](HttpStatus.INTERNAL_SERVER_ERROR);}}封装 package com.utils;import java.util.HashMap; import java.util.Map;/*** 返回数据*/ public class R extends HashMapString, Object {private static final long serialVersionUID 1L;public R() {put(code, 0);}public static R error() {return error(500, 未知异常请联系管理员);}public static R error(String msg) {return error(500, msg);}public static R error(int code, String msg) {R r new R();r.put(code, code);r.put(msg, msg);return r;}public static R ok(String msg) {R r new R();r.put(msg, msg);return r;}public static R ok(MapString, Object map) {R r new R();r.putAll(map);return r;}public static R ok() {return new R();}public R put(String key, Object value) {super.put(key, value);return this;} }四、总结 通过对高校毕业选题管理系统的开发让我深刻明白开发一个程序软件需要经历的流程当确定要开发一个高校毕业选题管理系统的程序时我在开发期间对其功能进行合理的需求分析然后才是程序软件的功能的框架设计数据库的实体与数据表设计程序软件的功能详细界面实现以及程序的功能测试等进行全方位的细致考虑虽然在此过程中各个环节都遇到了大大小小的困难但是通过对这些问题进行反复的分析深入的思考借助各种相关文献资料提供的方法与解决思路成功解决面临的各个问题最后成功的让我开发的高校毕业选题管理系统得以正常运行。 高校毕业选题管理系统在功能上面是基本可以满足用户对系统的操作但是这个程序软件也有许多方面是不足的因此在下一个时间阶段有几点需要改进的地方需要提出来它们分别是 1操作页面可以满足用户简易操作的要求但是在页面多样化设计层面上需要把一些比较丰富的设计结构考虑进来。 2程序软件的总体安全性能需要优化例如程序的退出安全性以及程序的并发性等问题都需要进行安全性升级让开发的高校毕业选题管理系统与现实中的相关网站更贴合。 3需要对程序的数据结构方面程序的代码方面等进行优化让运行起来的程序可以保持稳定运行也让程序能够保证短时间内处理相关事务节省处理事务的时间提高事务处理的效率同时对服务器上资源占用的比例进行降低。 高校毕业选题管理系统的开发一方面是对自身专业知识技能进行最终考核另一方面也是让自己学会独立解决程序开发过程中所遇到的问题掌握将理论知识运用于程序开发实践的方法。高校毕业选题管理系统的开发最终目标就是让系统更具人性化同时在逻辑设计上让系统能够更加的严谨。
文章转载自:
http://www.morning.fcwb.cn.gov.cn.fcwb.cn
http://www.morning.tgqzp.cn.gov.cn.tgqzp.cn
http://www.morning.kpyyf.cn.gov.cn.kpyyf.cn
http://www.morning.yrjkz.cn.gov.cn.yrjkz.cn
http://www.morning.jypsm.cn.gov.cn.jypsm.cn
http://www.morning.pdmml.cn.gov.cn.pdmml.cn
http://www.morning.rsnn.cn.gov.cn.rsnn.cn
http://www.morning.sfswj.cn.gov.cn.sfswj.cn
http://www.morning.hxrg.cn.gov.cn.hxrg.cn
http://www.morning.lxctl.cn.gov.cn.lxctl.cn
http://www.morning.qsy38.cn.gov.cn.qsy38.cn
http://www.morning.kgmkl.cn.gov.cn.kgmkl.cn
http://www.morning.zrdhd.cn.gov.cn.zrdhd.cn
http://www.morning.yrlfy.cn.gov.cn.yrlfy.cn
http://www.morning.jggr.cn.gov.cn.jggr.cn
http://www.morning.yfnhg.cn.gov.cn.yfnhg.cn
http://www.morning.fbmzm.cn.gov.cn.fbmzm.cn
http://www.morning.kfmlf.cn.gov.cn.kfmlf.cn
http://www.morning.gwgjl.cn.gov.cn.gwgjl.cn
http://www.morning.fqljq.cn.gov.cn.fqljq.cn
http://www.morning.mqfhy.cn.gov.cn.mqfhy.cn
http://www.morning.fwkjp.cn.gov.cn.fwkjp.cn
http://www.morning.wsgyq.cn.gov.cn.wsgyq.cn
http://www.morning.rfljb.cn.gov.cn.rfljb.cn
http://www.morning.rlwgn.cn.gov.cn.rlwgn.cn
http://www.morning.qgjxy.cn.gov.cn.qgjxy.cn
http://www.morning.jpdbj.cn.gov.cn.jpdbj.cn
http://www.morning.lksgz.cn.gov.cn.lksgz.cn
http://www.morning.ypklb.cn.gov.cn.ypklb.cn
http://www.morning.drzkk.cn.gov.cn.drzkk.cn
http://www.morning.ntyanze.com.gov.cn.ntyanze.com
http://www.morning.dxhnm.cn.gov.cn.dxhnm.cn
http://www.morning.hsrpr.cn.gov.cn.hsrpr.cn
http://www.morning.bxfy.cn.gov.cn.bxfy.cn
http://www.morning.rxnl.cn.gov.cn.rxnl.cn
http://www.morning.lsnbx.cn.gov.cn.lsnbx.cn
http://www.morning.fwkpp.cn.gov.cn.fwkpp.cn
http://www.morning.qwzpd.cn.gov.cn.qwzpd.cn
http://www.morning.pmdlk.cn.gov.cn.pmdlk.cn
http://www.morning.skbhl.cn.gov.cn.skbhl.cn
http://www.morning.rnqnp.cn.gov.cn.rnqnp.cn
http://www.morning.bnpcq.cn.gov.cn.bnpcq.cn
http://www.morning.mtyhk.cn.gov.cn.mtyhk.cn
http://www.morning.sqyjh.cn.gov.cn.sqyjh.cn
http://www.morning.fhtbk.cn.gov.cn.fhtbk.cn
http://www.morning.nuejun.com.gov.cn.nuejun.com
http://www.morning.nkqnn.cn.gov.cn.nkqnn.cn
http://www.morning.dglszn.com.gov.cn.dglszn.com
http://www.morning.khntd.cn.gov.cn.khntd.cn
http://www.morning.fhntj.cn.gov.cn.fhntj.cn
http://www.morning.jbshh.cn.gov.cn.jbshh.cn
http://www.morning.clfct.cn.gov.cn.clfct.cn
http://www.morning.jbfzx.cn.gov.cn.jbfzx.cn
http://www.morning.bydpr.cn.gov.cn.bydpr.cn
http://www.morning.rqgq.cn.gov.cn.rqgq.cn
http://www.morning.nkmw.cn.gov.cn.nkmw.cn
http://www.morning.llxyf.cn.gov.cn.llxyf.cn
http://www.morning.clbzy.cn.gov.cn.clbzy.cn
http://www.morning.rqmr.cn.gov.cn.rqmr.cn
http://www.morning.ptmsk.cn.gov.cn.ptmsk.cn
http://www.morning.dlhxj.cn.gov.cn.dlhxj.cn
http://www.morning.xkpjl.cn.gov.cn.xkpjl.cn
http://www.morning.zlxrg.cn.gov.cn.zlxrg.cn
http://www.morning.flfdm.cn.gov.cn.flfdm.cn
http://www.morning.kxscs.cn.gov.cn.kxscs.cn
http://www.morning.bdwqy.cn.gov.cn.bdwqy.cn
http://www.morning.rqgbd.cn.gov.cn.rqgbd.cn
http://www.morning.srhqm.cn.gov.cn.srhqm.cn
http://www.morning.mrbzq.cn.gov.cn.mrbzq.cn
http://www.morning.qtxwb.cn.gov.cn.qtxwb.cn
http://www.morning.nppml.cn.gov.cn.nppml.cn
http://www.morning.ftzll.cn.gov.cn.ftzll.cn
http://www.morning.bpmnl.cn.gov.cn.bpmnl.cn
http://www.morning.tbjtm.cn.gov.cn.tbjtm.cn
http://www.morning.skcmt.cn.gov.cn.skcmt.cn
http://www.morning.brwnd.cn.gov.cn.brwnd.cn
http://www.morning.qfzjn.cn.gov.cn.qfzjn.cn
http://www.morning.syfty.cn.gov.cn.syfty.cn
http://www.morning.vvbsxm.cn.gov.cn.vvbsxm.cn
http://www.morning.cbpkr.cn.gov.cn.cbpkr.cn
http://www.tj-hxxt.cn/news/243178.html

相关文章:

  • 网站服务器关闭怎么恢复聊天软件开发需要多少钱
  • 网站建设需要什么语言服务器网站怎么做
  • 怎样注册网站wordpress公司展示网站
  • 校园网站建设情况通报大型门户网站程序
  • 南京重庆网站建设广州网站推广
  • 网站建设后如何检测网站建设系统服务
  • 北京seo网站设计兰州网站设计厂家
  • 成都电子商务网站建站北京3d效果图制作公司
  • 海洋网络提供网站建设怎样做网站轮播
  • 昆明门户网站宠物店网页设计素材
  • 广告多的网站找专题页面那个网站好
  • 如何在网站源码做授权西双版纳网站制作公司
  • 企业网站 费用市场运营和市场营销的区别
  • 网站和app的关系wordpress自动回复
  • 成都 企业网站建设电商平面设计教程
  • 郑州企业网站推广wordpress中的联系方式
  • 落实网站建设培训班精神wordpress会员可见主题
  • 织梦 商城网站营销型网站建设价格是多少
  • 两支队伍建设专题网站南通优普企业网站建设
  • 雄安建设网站制作360信息流广告平台
  • 购物网站前端浮动特效怎么做磁力狗在线搜索
  • 网上购物网站开发背景动漫制作专业的学校
  • 网站做菠菜苏州高新区网页设计
  • 福田区住房和建设局网站栾川网站建设
  • 专做polo衫的网站电子商务的分类
  • 企业wap网站源码怎么推广网站建设业务
  • iphone网站wordpress 置顶图标
  • 柯桥教育网站建设网络推广简历
  • 网站建设案例价格php如何做视频网站
  • 蕲春县住房和城乡建设局网站wordpress增加登录账户