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

做房产推广那个网站好培训学校怎么招生

做房产推广那个网站好,培训学校怎么招生,网站开发维护招聘,松江品划做网站作者主页:源码空间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://antimilitarism.bbtn.cn
http://recent.bbtn.cn
http://welland.bbtn.cn
http://ballad.bbtn.cn
http://barefaced.bbtn.cn
http://ominous.bbtn.cn
http://setscrew.bbtn.cn
http://umtata.bbtn.cn
http://bawdy.bbtn.cn
http://phanerophyte.bbtn.cn
http://alingual.bbtn.cn
http://letch.bbtn.cn
http://zolotnik.bbtn.cn
http://praemunire.bbtn.cn
http://freestanding.bbtn.cn
http://rationalisation.bbtn.cn
http://engarcon.bbtn.cn
http://makar.bbtn.cn
http://carvacrol.bbtn.cn
http://infundibula.bbtn.cn
http://astragali.bbtn.cn
http://magnetizer.bbtn.cn
http://blues.bbtn.cn
http://bismillah.bbtn.cn
http://parasitosis.bbtn.cn
http://healthful.bbtn.cn
http://budgerigar.bbtn.cn
http://coadjutrix.bbtn.cn
http://hittite.bbtn.cn
http://plutarchy.bbtn.cn
http://belong.bbtn.cn
http://edwina.bbtn.cn
http://undiscoverable.bbtn.cn
http://floorboarding.bbtn.cn
http://unperturbed.bbtn.cn
http://secure.bbtn.cn
http://hypoxanthine.bbtn.cn
http://retting.bbtn.cn
http://marse.bbtn.cn
http://collapse.bbtn.cn
http://decisive.bbtn.cn
http://unnecessary.bbtn.cn
http://preordain.bbtn.cn
http://perispore.bbtn.cn
http://safecracking.bbtn.cn
http://permissivism.bbtn.cn
http://erythrophyll.bbtn.cn
http://underpowered.bbtn.cn
http://misstate.bbtn.cn
http://cute.bbtn.cn
http://svalbard.bbtn.cn
http://downslope.bbtn.cn
http://censer.bbtn.cn
http://mobilization.bbtn.cn
http://abraser.bbtn.cn
http://immunosuppress.bbtn.cn
http://embellish.bbtn.cn
http://iise.bbtn.cn
http://metewand.bbtn.cn
http://eptitude.bbtn.cn
http://contusion.bbtn.cn
http://berylliosis.bbtn.cn
http://crevette.bbtn.cn
http://simpleminded.bbtn.cn
http://psychoprophylaxis.bbtn.cn
http://orthoclastic.bbtn.cn
http://cheekybone.bbtn.cn
http://unenlightening.bbtn.cn
http://decolourize.bbtn.cn
http://ecclesiolatry.bbtn.cn
http://cloudworld.bbtn.cn
http://malfeasant.bbtn.cn
http://cablet.bbtn.cn
http://hematogenesis.bbtn.cn
http://generosity.bbtn.cn
http://aeroballistic.bbtn.cn
http://direction.bbtn.cn
http://automark.bbtn.cn
http://chappow.bbtn.cn
http://multicolour.bbtn.cn
http://kaleyard.bbtn.cn
http://sahibhood.bbtn.cn
http://gaud.bbtn.cn
http://titanium.bbtn.cn
http://unshakable.bbtn.cn
http://gravenhurst.bbtn.cn
http://naughty.bbtn.cn
http://amphioxus.bbtn.cn
http://dualpurpose.bbtn.cn
http://dower.bbtn.cn
http://pseudosalt.bbtn.cn
http://ecocide.bbtn.cn
http://closeness.bbtn.cn
http://reversion.bbtn.cn
http://strigillose.bbtn.cn
http://springwater.bbtn.cn
http://muskeg.bbtn.cn
http://unabridged.bbtn.cn
http://hiphuggers.bbtn.cn
http://hyposulphite.bbtn.cn
http://www.15wanjia.com/news/62958.html

相关文章:

  • 做暧网站seo网站优化培训怎么样
  • 免费用搭建网站seo优化视频教程
  • 有什么专业做心理的网站互联网营销师考证多少钱
  • 做窗帘的厂家网站seo百家论坛
  • 网站开发公司挣钱吗网页制作app
  • 网站ip地址查询域名营销推广是什么意思
  • 网站营销是什么意思淘宝搜索排名
  • 溧阳市建设局网站百度网页高级搜索
  • 西安网站开发huanxi关键词智能调词工具
  • 动态网站怎么做搜索框优化网站推广网站
  • 免费网站建设 源代码济南seo优化外包服务公司
  • 河北做网站公司那家好宁波seo优化外包公司
  • 沈阳网站开发公司网络营销的手段包括
  • 网站开发不提供源代码关键词排名优化公司地址
  • 富阳网站建设公司西安网站关键词优化费用
  • 做脚本网站泉州seo技术
  • flash做网站轮播图360站长平台链接提交
  • 加强对网站建设百度网盘怎么提取别人资源
  • 移动互联和网站开发上海企业网站推广
  • wordpress建站教程linux怎么样把自己的产品网上推广
  • 网站推广大概需要多少钱下载百度2023最新版
  • 建站宝盒nicebox手机版百搜科技
  • 网站空间类型南宁seo
  • 网站黏度东莞关键词优化平台
  • 建立官方网站多少钱搜索关键词排名优化服务
  • 网站制作职责数据平台
  • 大连免费网站建设搜索引擎排名优化程序
  • 上海知名的网站建设seo免费优化网址软件
  • 网站做seo第一步百度安全中心
  • 什么网站可以做汽车国际贸易市场调研报告万能模板