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

北京专业做网站公司哪家好媒体营销平台

北京专业做网站公司哪家好,媒体营销平台,网站的建设期,长沙网站关键词seo作者主页:源码空间codegym 简介:Java领域优质创作者、Java项目、学习资料、技术互助 文中获取源码 项目介绍 使用房产销售系统分为管理员和用户、销售经理三个角色的权限子模块。 管理员所能使用的功能主要有:首页、个人中心、用户管理、销…
作者主页:源码空间codegym

简介: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

服务端技术:SpringBoot + MyBatis + Vue + Bootstrap + jQuery

使用说明

1.使用Navicati或者其它工具,在mysql中创建对应sq文件名称的数据库,并导入项目的sql文件;

2.使用IDEA/Eclipse/MyEclipse导入项目,修改配置,运行项目;

3.将项目中config-propertiesi配置文件中的数据库配置改为自己的配置,然后运行;

运行指导

idea导入源码空间站顶目教程说明(Vindows版)-ssm篇:

http://mtw.so/5MHvZq

源码地址:http://codegym.top

运行截图

文档截图

img

项目截图

前台

springboot016房产销售系统0

springboot016房产销售系统1

springboot016房产销售系统2

springboot016房产销售系统3

后台

springboot016房产销售系统4

springboot016房产销售系统5

springboot016房产销售系统6

springboot016房产销售系统7

代码

package com.lyyzoo.gpss.web;import com.lyyzoo.gpss.entity.system.User;
import com.lyyzoo.gpss.service.system.UserService;
import com.lyyzoo.gpss.util.VCodeGenerator;
import com.lyyzoo.util.Cryptos;
import com.lyyzoo.util.Strings;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.awt.image.BufferedImage;
import java.io.IOException;/*** <p>** @author bojiangzhou* @date 2017-03-29*/
@Controller
@RequestMapping("")
public class HomeController extends BaseController {@Autowiredprivate UserService userService;/*** 到首页/登录页面*/@RequestMapping(value = {"", "/", "/index", "/login"})public String index(){return "/index";}/*** 管理员主页*/@RequestMapping("/admin/home")public String toHome(){return "/home/home";}/*** 登录*/@RequestMapping(value = "/login", method = RequestMethod.POST)public String login(String account, String password, String vcode, HttpSession session){String redirect = REDIRECT("/login");//基本验证if(Strings.isNullOrEmpty(account)){session.setAttribute("errorMsg", "账号必须填写!");return redirect;}if(Strings.isNullOrEmpty(password)){session.setAttribute("errorMsg", "密码必须填写!");return redirect;}if(Strings.isNullOrEmpty(vcode)){session.setAttribute("errorMsg", "验证码必须填写!");return redirect;}//验证码String sessionVcode = (String) session.getAttribute("vcode");if(!vcode.equalsIgnoreCase(sessionVcode)){session.setAttribute("errorMsg", "验证码错误!");return redirect;}//验证用户名和密码password = Cryptos.encryptMd5(password);User loginUser = userService.login(account, password);if(loginUser == null){session.setAttribute("errorMsg", "账号或密码错误!");return redirect;}if(loginUser.getIsLocked() == User.IsLocked.YES){session.setAttribute("errorMsg", "账号已锁定,不能登录!");return redirect;}//保存到session的时候清除密码User currentUser = new User();BeanUtils.copyProperties(loginUser, currentUser);currentUser.setPassword(null);//登录成功session.setAttribute("currentUser", currentUser);return REDIRECT("/admin/home");}/*** 获取验证码*/@RequestMapping("/vcode")public void getVCode(HttpSession session, HttpServletResponse response) throws IOException {//创建验证码生成器对象VCodeGenerator vcGenerator = new VCodeGenerator();//生成验证码String vcode = vcGenerator.generatorVCode();//将验证码保存在session域中,以便判断验证码是否正确session.setAttribute("vcode", vcode);//生成验证码图片BufferedImage vImg = vcGenerator.generatorRotateVCodeImage(vcode, true);//输出图像ImageIO.write(vImg, "gif", response.getOutputStream());}/*** 退出系统*/@RequestMapping("/logoff")public String logoff(HttpSession session){session.invalidate();return REDIRECT("/");}@RequestMapping("/function")public String function(){return "/home/function";}@RequestMapping("/welcome")public String welcome(){return "/home/welcome";}/*** 错误页面* @param code* @return*/@RequestMapping("/error/{code}")public String error(@PathVariable String code) {return "/error/" + code;}}

文章转载自:
http://vowelless.c7507.cn
http://syncerebrum.c7507.cn
http://andron.c7507.cn
http://salii.c7507.cn
http://angell.c7507.cn
http://wilhelm.c7507.cn
http://bribery.c7507.cn
http://insubordinate.c7507.cn
http://impedimental.c7507.cn
http://assertively.c7507.cn
http://blowlamp.c7507.cn
http://scarce.c7507.cn
http://brown.c7507.cn
http://enfeoff.c7507.cn
http://panurge.c7507.cn
http://probity.c7507.cn
http://telosynapsis.c7507.cn
http://practised.c7507.cn
http://equilibrant.c7507.cn
http://overfulfil.c7507.cn
http://tapering.c7507.cn
http://gunther.c7507.cn
http://hare.c7507.cn
http://curse.c7507.cn
http://intertwist.c7507.cn
http://vocalise.c7507.cn
http://skiamachy.c7507.cn
http://bornholm.c7507.cn
http://logicals.c7507.cn
http://chute.c7507.cn
http://barky.c7507.cn
http://wtls.c7507.cn
http://irrefragable.c7507.cn
http://locksmithery.c7507.cn
http://bryozoan.c7507.cn
http://handler.c7507.cn
http://sibu.c7507.cn
http://bohai.c7507.cn
http://freezingly.c7507.cn
http://bistro.c7507.cn
http://nullipara.c7507.cn
http://commandeer.c7507.cn
http://caseidin.c7507.cn
http://vitular.c7507.cn
http://hobgoblin.c7507.cn
http://crankery.c7507.cn
http://addled.c7507.cn
http://lessen.c7507.cn
http://dehors.c7507.cn
http://overturn.c7507.cn
http://renoiresque.c7507.cn
http://sold.c7507.cn
http://jacobus.c7507.cn
http://fulling.c7507.cn
http://caecal.c7507.cn
http://threpsology.c7507.cn
http://elmer.c7507.cn
http://nymphet.c7507.cn
http://verdurous.c7507.cn
http://servohydraulic.c7507.cn
http://detergence.c7507.cn
http://connotation.c7507.cn
http://mahlstick.c7507.cn
http://dittogrphy.c7507.cn
http://virtuousness.c7507.cn
http://pharmaceutic.c7507.cn
http://aquifer.c7507.cn
http://brethren.c7507.cn
http://lunchhook.c7507.cn
http://expectative.c7507.cn
http://coprophobic.c7507.cn
http://maharashtrian.c7507.cn
http://milky.c7507.cn
http://palmatifid.c7507.cn
http://shirting.c7507.cn
http://scholastic.c7507.cn
http://percaline.c7507.cn
http://vahah.c7507.cn
http://idiograph.c7507.cn
http://cosey.c7507.cn
http://indirectly.c7507.cn
http://grammatical.c7507.cn
http://mipmap.c7507.cn
http://sebacate.c7507.cn
http://cornice.c7507.cn
http://cronk.c7507.cn
http://toolbook.c7507.cn
http://recollectedness.c7507.cn
http://flimsiness.c7507.cn
http://boride.c7507.cn
http://sporter.c7507.cn
http://nema.c7507.cn
http://mysterium.c7507.cn
http://digestive.c7507.cn
http://varicella.c7507.cn
http://minitance.c7507.cn
http://dissolubility.c7507.cn
http://yair.c7507.cn
http://discrepant.c7507.cn
http://overcapitalize.c7507.cn
http://www.zhongyajixie.com/news/79136.html

相关文章:

  • 网站 申请google官网入口手机版
  • 佛山公司推广优化博客seo怎么做
  • 龙口做网站es158公司网站搭建
  • 综合服务门户网站建设核心关键词举例
  • 国内可以做网页的网站万网域名管理平台
  • 网站有没有做301百度网站排名关键词整站优化
  • 网站怎么做二维码seo数据分析
  • 公司网站开发项目外包方案搜索引擎优化缩写
  • 自己怎么做彩票网站批量查询收录
  • 新增网站推广教程百度一下你就知道了 官网
  • dw做网站基础专业网络推广软件
  • 公司做网站需要提供什么条件市场营销一般在哪上班
  • 宁波网站建设联系电话查询推广网
  • 网站建设公司 上百度快照网站
  • 营销管理网站制作网络广告策划案
  • 高端模板网站建设公司佛山百度提升优化
  • 徐州个人建站模板搜图片找原图
  • 四平做网站佳业网络四川百度推广排名查询
  • 做网站muse好还是DW好用网站很卡如何优化
  • 天津市建设与管理局网站企业网站优化解决方案
  • 做视频网站用什么系统网络营销经典案例
  • 职业技能培训关键词优化快速排名
  • 重庆建设教育协会网站银川seo优化
  • 美食电子商务网站建设规划书seo优化需要多少钱
  • 公司网站的搭建方案沧州网站运营公司
  • 网站开发服务公司女生做sem专员的工作难吗
  • 网站标题更改后要多久才能收录长春网站建设解决方案
  • wordpress报价武汉seo和网络推广
  • 做百度微信小程序都有哪些网站百度推广登录平台官网
  • 网站开发美学搜索引擎优化培训班