cms系统总结

cms系统概述

这次做第一个项目为管理系统,主要是前台页面和后台页面

用到的技术

前端需要用到jsp,css,JQuery,javascript,json
前端主要做页面的展示以及给后台返回需要crud的数据

后台代码部分需要用到,三层架构(dao,service,Conctoller),springmvc,springjdbc,IO流
后台主要是针对前端返回的数据进行处理后持久化到数据库中

数据库的主要作用是对数据进行持久化

完成图片上传

form标签中需要配置 method=“post” enctype=“multipart/form-data”
后台要根据上传的文件名进行接收
①.修改名称 ②.获取路径 ③.保存图片
④.保存Images对象(绝对路径的地址,名称)

ApplicationContext.xml文件配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:context="http://www.springframework.org/schema/context"
 xmlns:mvc="http://www.springframework.org/schema/mvc"
 xsi:schemaLocation="
 http://www.springframework.org/schema/beans
 http://www.springframework.org/schema/beans/spring-beans.xsd
 http://www.springframework.org/schema/context
 http://www.springframework.org/schema/context/spring-context.xsd
 http://www.springframework.org/schema/mvc
 http://www.springframework.org/schema/mvc/spring-mvc.xsd
 " >
	<!--  引入其它的Spring配置文件
 	<import resource="classpath:applicationContext.xml"/>
    -->
  
	<!-- 扫描包 -->
	<context:component-scan base-package="cn.itsource.cms" />
	<!--开启SpringMVC注解支持 -->
	<mvc:annotation-driven />
	<!-- 静态资源放行 -->
	<mvc:default-servlet-handler />
	<!-- 配置视图解析器 -->
	<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/views/" />
		<property name="suffix" value=".jsp" />
	</bean>
	<!-- 配置上传解析器 -->
	<bean id="multipartResolver"
		class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
		<property name="maxUploadSize">
			<value>30000000</value>
		</property>
	  </bean>
</beans>

xml文件配置

<?xml version="1.0" encoding="UTF-8"?>
<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">
  <display-name>springcrud</display-name>
  
	<!--   解决POST请求中文乱码问题 -->
	<filter>  
        <filter-name>characterEncodingFilter</filter-name>  
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>  
        <init-param>  
            <param-name>encoding</param-name>  
            <param-value>UTF-8</param-value>  
        </init-param>  
        <init-param>  
            <param-name>forceEncoding</param-name>  
            <param-value>true</param-value>  
        </init-param>  
    </filter>  
    <filter-mapping>  
        <filter-name>characterEncodingFilter</filter-name>  
        <url-pattern>/*  
    
    
	
	
		org.springframework.web.context.ContextLoaderListener 
	

	
		 contextConfigLocation
		 classpath:applicationContext.xml
	
    
	
  	
  		dispatcher
  		org.springframework.web.servlet.DispatcherServlet
  		
  			contextConfigLocation
  			classpath:applicationContext-mvc.xml
  		
  		1
  	
	
	
		dispatcher
		/
		


你可能感兴趣的:(cms系统总结)