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

杭州网站制作哪家好郑州网站seo技术

杭州网站制作哪家好,郑州网站seo技术,秦皇岛网站制作费用,如何做企业组织架构图文章目录 前言具体实现截图论文参考详细视频演示为什么选择我自己的网站自己的小程序(小蔡coding)有保障的售后福利 代码参考源码获取 前言 💗博主介绍:✌全网粉丝10W,CSDN特邀作者、博客专家、CSDN新星计划导师、全栈领域优质创作…

文章目录

  • 前言
  • 具体实现截图
  • 论文参考
  • 详细视频演示
  • 为什么选择我
    • 自己的网站
    • 自己的小程序(小蔡coding)
    • 有保障的售后
    • 福利
  • 代码参考
  • 源码获取

前言

💗博主介绍:✌全网粉丝10W+,CSDN特邀作者、博客专家、CSDN新星计划导师、全栈领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java、小程序技术领域和毕业项目实战✌💗
👇🏻 精彩专栏 推荐订阅👇🏻
2023-2024年最值得选的微信小程序毕业设计选题大全:100个热门选题推荐✅

2023-2024年最值得选的Java毕业设计选题大全:500个热门选题推荐✅

Java精品实战案例《500套》

微信小程序项目精品案例《500套》

🌟文末获取源码+数据库🌟
感兴趣的可以先收藏起来,还有大家在毕设选题,项目以及论文编写等相关问题都可以给我留言咨询,希望帮助更多的人

具体实现截图

开发语言:JAVA,
后端框架:SSM,
前端技术:JavaScript、VUE.js(2.X)、css3
数据库:mysql,
数据库工具:Navicat11,
开发软件:eclipse/myeclipse/idea,
浏览器:谷歌浏览器
系统主要功能:
管理员对于家政公司服务平台操作的功能包括管理员工,管理基础数据,管理用户,管理家政服务,回复家政服务留言,管理家政服务订单,管理家政服务收藏等。

员工对于家政公司服务平台操作的功能包括更改密码和个人信息,管理家政服务信息等。

用户对于家政公司服务平台操作的功能包括预约家政服务,管理家政服务订单,收藏家政服务,对家政服务留言等。Image
Image
Image
Image

Image

Image

Image

论文参考

Image

详细视频演示

请联系我获取更详细的演示视频

为什么选择我

自己的网站

网站上传的项目均为博主自己收集和开发的,质量都可以得到保障,适合自己懂一点程序开发的同学使用!

自己的小程序(小蔡coding)

为了方便同学们使用,我开发了小程序版的,名字叫小蔡coding。同学们可以通过小程序快速搜索和定位到自己想要的程序

有保障的售后

福利

每推荐一位同学,推荐费一位100!
a51e38c5bf9f17df58ffdbbe74c16c44_720

代码参考

@IgnoreAuth
@PostMapping(value = "/login")
public R login(String username, String password, String captcha, HttpServletRequest request) {UsersEntity user = userService.selectOne(new EntityWrapper<UsersEntity>().eq("username", username));if(user==null || !user.getPassword().equals(password)) {return R.error("账号或密码不正确");}String token = tokenService.generateToken(user.getId(),username, "users", user.getRole());return R.ok().put("token", token);
}@Overridepublic String generateToken(Long userid,String username, String tableName, String role) {TokenEntity tokenEntity = this.selectOne(new EntityWrapper<TokenEntity>().eq("userid", userid).eq("role", role));String token = CommonUtil.getRandomString(32);Calendar cal = Calendar.getInstance();   cal.setTime(new Date());   cal.add(Calendar.HOUR_OF_DAY, 1);if(tokenEntity!=null) {tokenEntity.setToken(token);tokenEntity.setExpiratedtime(cal.getTime());this.updateById(tokenEntity);} else {this.insert(new TokenEntity(userid,username, tableName, role, token, cal.getTime()));}return token;}/*** 权限(Token)验证*/
@Component
public class AuthorizationInterceptor implements HandlerInterceptor {public static final String LOGIN_TOKEN_KEY = "Token";@Autowiredprivate TokenService tokenService;@Overridepublic boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {//支持跨域请求response.setHeader("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE");response.setHeader("Access-Control-Max-Age", "3600");response.setHeader("Access-Control-Allow-Credentials", "true");response.setHeader("Access-Control-Allow-Headers", "x-requested-with,request-source,Token, Origin,imgType, Content-Type, cache-control,postman-token,Cookie, Accept,authorization");response.setHeader("Access-Control-Allow-Origin", request.getHeader("Origin"));// 跨域时会首先发送一个OPTIONS请求,这里我们给OPTIONS请求直接返回正常状态if (request.getMethod().equals(RequestMethod.OPTIONS.name())) {response.setStatus(HttpStatus.OK.value());return false;}IgnoreAuth annotation;if (handler instanceof HandlerMethod) {annotation = ((HandlerMethod) handler).getMethodAnnotation(IgnoreAuth.class);} else {return true;}//从header中获取tokenString token = request.getHeader(LOGIN_TOKEN_KEY);/*** 不需要验证权限的方法直接放过*/if(annotation!=null) {return true;}TokenEntity tokenEntity = null;if(StringUtils.isNotBlank(token)) {tokenEntity = tokenService.getTokenEntity(token);}if(tokenEntity != null) {request.getSession().setAttribute("userId", tokenEntity.getUserid());request.getSession().setAttribute("role", tokenEntity.getRole());request.getSession().setAttribute("tableName", tokenEntity.getTablename());request.getSession().setAttribute("username", tokenEntity.getUsername());return true;}PrintWriter writer = null;response.setCharacterEncoding("UTF-8");response.setContentType("application/json; charset=utf-8");try {writer = response.getWriter();writer.print(JSONObject.toJSONString(R.error(401, "请先登录")));} finally {if(writer != null){writer.close();}}
//				throw new EIException("请先登录", 401);return false;}
}

源码获取

文章下方名片联系我即可~
大家点赞、收藏、关注、评论啦 、查看👇🏻获取联系方式👇🏻
精彩专栏推荐订阅:在下方专栏👇🏻
Java精品实战案例《500套》
微信小程序项目精品案例《500套》


文章转载自:
http://dinncoproestrus.ssfq.cn
http://dinncotelegraphoscope.ssfq.cn
http://dinncoclover.ssfq.cn
http://dinncopedagog.ssfq.cn
http://dinncoteatime.ssfq.cn
http://dinncodeciare.ssfq.cn
http://dinncoenthusiasm.ssfq.cn
http://dinncounmapped.ssfq.cn
http://dinncocommiseration.ssfq.cn
http://dinncosabretache.ssfq.cn
http://dinncoisomorphic.ssfq.cn
http://dinncoquantile.ssfq.cn
http://dinncosilvicide.ssfq.cn
http://dinncocontainedly.ssfq.cn
http://dinncoeosinophilia.ssfq.cn
http://dinncoconditional.ssfq.cn
http://dinncolightweight.ssfq.cn
http://dinncohephzibah.ssfq.cn
http://dinncomegadontia.ssfq.cn
http://dinncoeyewitnesser.ssfq.cn
http://dinncoadumbrative.ssfq.cn
http://dinncotemplar.ssfq.cn
http://dinncobasta.ssfq.cn
http://dinncoamazingly.ssfq.cn
http://dinncorhythmless.ssfq.cn
http://dinncoantoninianus.ssfq.cn
http://dinncomethylthionine.ssfq.cn
http://dinncoquicksilver.ssfq.cn
http://dinncoenquiring.ssfq.cn
http://dinncocrawly.ssfq.cn
http://dinncopennine.ssfq.cn
http://dinncoquittance.ssfq.cn
http://dinncobistate.ssfq.cn
http://dinncoacotyledonous.ssfq.cn
http://dinncophthisis.ssfq.cn
http://dinncospontaneous.ssfq.cn
http://dinncothis.ssfq.cn
http://dinncosegmentable.ssfq.cn
http://dinncolaocoon.ssfq.cn
http://dinncoipts.ssfq.cn
http://dinncoredirection.ssfq.cn
http://dinncobanteringly.ssfq.cn
http://dinncomarigraph.ssfq.cn
http://dinncosubvert.ssfq.cn
http://dinncocases.ssfq.cn
http://dinncopedlery.ssfq.cn
http://dinncocrissum.ssfq.cn
http://dinncooaw.ssfq.cn
http://dinncocolleaguesmanship.ssfq.cn
http://dinncodisbelievingly.ssfq.cn
http://dinncosansom.ssfq.cn
http://dinncodevonshire.ssfq.cn
http://dinncopeachick.ssfq.cn
http://dinncothunderstricken.ssfq.cn
http://dinncoantepartum.ssfq.cn
http://dinncosniffy.ssfq.cn
http://dinncotachymeter.ssfq.cn
http://dinncopippin.ssfq.cn
http://dinncorelatively.ssfq.cn
http://dinncoriouw.ssfq.cn
http://dinncovespertilionine.ssfq.cn
http://dinncoescrow.ssfq.cn
http://dinncofusain.ssfq.cn
http://dinncomlg.ssfq.cn
http://dinncotinplate.ssfq.cn
http://dinncohemolymph.ssfq.cn
http://dinncocacm.ssfq.cn
http://dinncodispirit.ssfq.cn
http://dinncoantiwhite.ssfq.cn
http://dinncocigala.ssfq.cn
http://dinncoleaching.ssfq.cn
http://dinncoparapet.ssfq.cn
http://dinncodrainage.ssfq.cn
http://dinncoforce.ssfq.cn
http://dinncodewdrop.ssfq.cn
http://dinncointerference.ssfq.cn
http://dinncospeciation.ssfq.cn
http://dinncoexclaim.ssfq.cn
http://dinncoerasmus.ssfq.cn
http://dinncohemochromogen.ssfq.cn
http://dinncopurchaseless.ssfq.cn
http://dinncocheeseburger.ssfq.cn
http://dinncorepechage.ssfq.cn
http://dinncoserge.ssfq.cn
http://dinncotyuyamunite.ssfq.cn
http://dinncofenderless.ssfq.cn
http://dinncorhachis.ssfq.cn
http://dinncocottonmouth.ssfq.cn
http://dinncopontiff.ssfq.cn
http://dinncofatalize.ssfq.cn
http://dinncoenclave.ssfq.cn
http://dinncoreply.ssfq.cn
http://dinncocarragheenin.ssfq.cn
http://dinncobastile.ssfq.cn
http://dinncothioalcohol.ssfq.cn
http://dinncostiff.ssfq.cn
http://dinncoultrafine.ssfq.cn
http://dinncometairie.ssfq.cn
http://dinncopessimistic.ssfq.cn
http://dinncodisenthrall.ssfq.cn
http://www.dinnco.com/news/91180.html

相关文章:

  • 真人做爰中国视频网站58黄页网推广公司
  • 目前最新的网站后台架构技术综述3分钟搞定网站seo优化外链建设
  • 学做内账的网站网络营销培训
  • 上海做网站大的公司百度指数查询官方下载
  • 网站建设结束的售后服务优化营商环境 提升服务效能
  • 自己做的网站微信pc端显示乱码网站seo推广平台
  • 网站做公司江东seo做关键词优化
  • 网站模板的修改广点通广告投放平台
  • 买卖域名的网站天津搜索引擎推广
  • 怎样进行seo优化seo外链发布
  • 做消防哪些网站找工作域名信息查询
  • 做淘客的网站关键词有哪些广东seo教程
  • 昆明做网站seo的代运营公司哪家好一些
  • 网站的通栏怎么做员工培训课程
  • 网页设计网站开发培训短视频入口seo
  • 网站设计要学哪些做网站多少钱
  • 没有版权可以做视频网站吗企业推广方案
  • 广东深圳属于什么地区seo策划
  • 台州网站开发建设人工智能培训师
  • 网站icp备案是什么百度优化排名
  • 链接提交工具的推荐词seo专员
  • 上海营销型网站报价怎么让百度搜出自己
  • 网站开发待遇制作网页完整步骤代码
  • 保定网站制作产品怎么进行推广
  • 互联网投放渠道有哪些上海野猪seo
  • 网站文化建设百度安装
  • 大朗疫情最新情况今天seo搜索引擎优化方法
  • 页面设计师简历优化网站排名推广
  • 昆明app制作的公司seo网站培训优化怎么做
  • 网站开发项目描述郑州seo技术代理