• SSM 图书管理在线销售系统


    SSM 图书管理在线销售系统

    SSM 图书管理在线销售系统功能介绍

    首页 图书展示 按类型展示图书 关键字搜索图书 图书详情 图书评论 中英文切换 会员注册登录 购买图书 购物车 收藏图书 我的收藏 我的订单

    后台管理登录 图书管理 添加修改删除图书 图书类型管理 订单管理 评论管理

    使用技术
    功能展示

    在这里插入图片描述
    在这里插入图片描述

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    web.xml配置
    
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    		 xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    		 xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    		 id="WebApp_ID" version="3.1">
    		
    	<context-param>
      		
      		<param-name>contextConfigLocationparam-name>
      		<param-value>
      			classpath:applicationContext.xml
      		param-value>
      	context-param>
      	
      	<listener>
      		<listener-class>
      			org.springframework.web.context.ContextLoaderListener
      		listener-class>
      	listener>
    	
    	<servlet>
    		<servlet-name>springmvcservlet-name>
    		<servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
    		<init-param>
    			<description>SpringMVCdescription>
    			<param-name>contextConfigLocationparam-name>
    			<param-value>classpath:springmvcContext.xmlparam-value>
    		init-param>
    		<load-on-startup>1load-on-startup>
    	servlet>
    	
    	
    	<servlet-mapping>
    		<servlet-name>defaultservlet-name>
    		<url-pattern>*.jsurl-pattern>
    		<url-pattern>*.cssurl-pattern>
    		<url-pattern>*.htmlurl-pattern>
    		<url-pattern>/upload/*url-pattern>
    	servlet-mapping>
    
    	<servlet-mapping>
    		<servlet-name>springmvcservlet-name>
    		<url-pattern>/url-pattern>
    	servlet-mapping>
    	
    	<filter>
        	<filter-name>characterEncodingFilterfilter-name>
        	<filter-class>org.springframework.web.filter.CharacterEncodingFilterfilter-class>
        	<init-param>
          		<param-name>encodingparam-name>
          		<param-value>UTF-8param-value>
        	init-param>
        	<init-param>
         		<param-name>forceEncodingparam-name>
          		<param-value>trueparam-value>
        	init-param>
    	filter>
      	<filter-mapping>
        	<filter-name>characterEncodingFilterfilter-name>
        	<url-pattern>/*url-pattern>
      	filter-mapping>  
      
      	
      	<welcome-file-list>
        	<welcome-file>index.jspwelcome-file>
      	welcome-file-list>
      	
      	
      	<filter>
          	<filter-name>HiddenHttpMethodFilterfilter-name>
          	<filter-class>org.springframework.web.filter.HiddenHttpMethodFilterfilter-class>
      	filter>    
      	<filter-mapping>
          	<filter-name>HiddenHttpMethodFilterfilter-name>
          	<url-pattern>/*url-pattern>
      	filter-mapping>
    web-app>	
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    运行

    创建数据库, 然后修改数据库连接相关信息。

    配置tomcat运行

    首页访问:http://localhost:8080/booksellweb/before
    会员登录: member 密码: member

    后台管理访问:http://localhost:8080/booksellweb/admin
    管理员: admin 密码: admin

  • 相关阅读:
    【MySql】mysql之事务和存储引擎
    纯前端实现图片验证码
    Flink Yarn Per Job - 提交应用
    C语言:CRT detected that the application wrote to memory after end of heap buffer
    xxe漏洞——无回显(ctfshow web374——378)
    JavaScript的Web api接口
    Git拉取指定文件或者文件夹
    【详细教程hexo博客搭建】2、Vercel部署并绑定自定义域名+安装Butterfly主题
    【启动npm run serve 奇怪的报错】
    Django之模型层
  • 原文地址:https://blog.csdn.net/yinjl123/article/details/126810909