SpringMvc配置详解
开发环境 :
ide :idea
jdk:1.8
使用的框架技术:mybtais ,spring,spring mvc 数据源选用dbcp
首先贴上我们的项目结构,很简单的一个demo层次分明
当我们使用idea创建spring mvc项目时idea会自动为我们加入web组件 我们可以看到我们的配置文件并没有像myeclipse一样在src下 ,idea默认给我们的配置文件放到了web/web-inf文件夹下
上面这些jar是我们自己导入的,让我们来看一下
以下的jar包为idea自动为我们下载并且添加到项目中的,在这里不多做阐述
按照mvc的流程来说项目对应实体结构如下
我们在entity包中创建我们与数据库相连接,并且指定对应表内字段的一一对应。
数据库字段如下
通常的执行流程为:serviceimpl调用和对应mapper 来实现对数据库的增删改查等一系列功能
这里演示了一个简单的查询全部,并且使用 el 和jstl将查询的数据显示到jsp页面上,
mapper
1 package com.mapper; 2 3 import com.entity.user; 4 import org.springframework.stereotype.repository; 5 6 import java.util.list; 7 @repository 8 public interface usermapper {
与下面对应mapper中的id向对应 9 list<user> cxall(); 10 }
于是便引入今天的第一个配置,对对应mapper的操作映射
<?xml version="1.0" encoding="utf-8"?>
<!doctype mapper public "http://mybatis.org/dtd/mybatis-3-mapper.dtd" "mybatis-3-mapper.dtd" >
引入对对应mapper操作的命名空间,来告诉mybatis 我们要对哪一个mapper执行什么样的操作
<mapper namespace="com.mapper.usermapper">
简单查询,id对应mapper中的查询方法名, 返回结果集也是一个user类型的
<select id="cxall" resulttype="user">
select * from smbms_user
</select>
</mapper>
service:
1 package com.service; 2 3 import com.entity.user; 4 import org.springframework.stereotype.repository; 5 6 import java.util.list; 7 8 public interface userservice { 9 list<user> cxall(); 10 }
以及service的实现:
package com.serviceimpl; import com.entity.user; import com.mapper.usermapper; import com.service.userservice; import org.springframework.beans.factory.annotation.autowired; import org.springframework.stereotype.service; import java.util.list; @service public class userserviceimpl implements userservice {
使用自动注入将usermapper注入到当前service的实现中,调用其方法 @autowired private usermapper usermapper; @override public list<user> cxall() { return usermapper.cxall(); } }
controller:
1 package com.web; 2 3 import com.alibaba.fastjson.json; 4 import com.entity.user; 5 import com.service.userservice; 6 import org.springframework.beans.factory.annotation.autowired; 7 import org.springframework.stereotype.controller; 8 import org.springframework.web.bind.annotation.requestmapping; 9 import org.springframework.web.bind.annotation.responsebody; 10 11 import java.util.list; 12 @requestmapping("/user") 13 @controller 14 public class usercontroller {
注入service 调用其子类的实现15 @autowired 16 private userservice userservice; 17
结果返回页面的json格式乱码的问题 18 @requestmapping(value = "/cx.do",produces = {"text/javascript;charset=utf-8"}) 19 @responsebody 20 public string cx(){ 21 list<user> cxall = userservice.cxall(); 22 string json= json.tojsonstring(cxall); 23 return json; 24 } 25 }
如上便是这个小demo的经典三层实现,下面我们来说说为什么通过这么简单的操作就可以达到我们所要的效果呢?
首先我们来看一下我们的jdbc配置文件
jdbc.properties
1 jdbc.driver=com.mysql.jdbc.driver 2 jdbc.uri=jdbc:mysql://localhost\:3306/smbms?useunicode\=true&characterencoding\=utf8 3 jdbc.name=root 4 jdbc.pwd=1234
log4j.properties
log4j.rootlogger=debug, stdout,logfile log4j.appender.stdout=org.apache.log4j.consoleappender log4j.appender.stdout.target=system.err log4j.appender.stdout.layout=org.apache.log4j.simplelayout log4j.appender.logfile=org.apache.log4j.fileappender log4j.appender.logfile.file=jbit.log log4j.appender.logfile.layout=org.apache.log4j.patternlayout log4j.appender.logfile.layout.conversionpattern=%d{yyyy-mm-dd hh:mm:ss}%l %f %p %m%n org.apache.jasper.servlet.tldscanner.level = fine
重点在下面,我们看一下idea自动在为我们配置了什么,我们想当这个项目启动的时候,就自动为启动我们springmvc的组件,那么我们这个demo是一个web工程,并不需要对应的main方法之类,那我们究竟改怎么做呢?
我们来看一下web.xml文件
<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
xsi:schemalocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
配置上下文参数,在项目启动的时候自动加载spring的配置文件
<context-param>
<param-name>contextconfiglocation</param-name>
<param-value>/web-inf/applicationcontext.xml</param-value>
</context-param>
同理,自动加载mvc配置文件,加载位置是在web/web-inf/文件夹下,通常我们在myeclipse中的配置文件是在src下 ,这里不要搞混淆
<context-param>
<param-name>spring</param-name>
<param-value>/web-inf/dispatcher-servlet.xml</param-value>
</context-param>
配置过滤器
<filter>
<filter-name>filter</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>
</filter>
<filter-mapping>
<filter-name>filter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
配置了监听器
<listener>
<listener-class>org.springframework.web.context.contextloaderlistener</listener-class>
</listener>
配置了前端控制器
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.dispatcherservlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
对所有访问为.do的访问进行拦截处理
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
</web-app>
spring配置文件
1 <?xml version="1.0" encoding="utf-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" 4 xmlns:context="http://www.springframework.org/schema/context" 5 xsi:schemalocation="http://www.springframework.org/schema/beans 6 http://www.springframework.org/schema/beans/spring-beans.xsd 7 http://www.springframework.org/schema/context 8 http://www.springframework.org/schema/context/spring-context.xsd">
加载类路径下的jdbc配置文件 9 <context:property-placeholder location="classpath:jdbc.properties"></context:property-placeholder> 10
配置dbcp数据源 11 <bean id="datasource" class="org.apache.commons.dbcp2.basicdatasource"> 12 <property name="driverclassname" value="${jdbc.driver}"></property> 13 <property name="url" value="${jdbc.uri}"></property> 14 <property name="username" value="${jdbc.name}"></property> 15 <property name="password" value="${jdbc.pwd}"></property> 16 </bean> 17 配置sqlsessionfactory用来创建sqlsession 18 <bean id="sqlsessionfactory" class="org.mybatis.spring.sqlsessionfactorybean"> 19 <property name="datasource" ref="datasource"></property>
对该包下的实体类起别名 不需要用全类名的方法要标记 20 <property name="typealiasespackage" value="com.entity"></property>
扫描对应的mapper.xml 需要引入的mapper.xml 21 <property name="mapperlocations"> 22 <list> 23 <value>classpath*:com/mapper/usermapper.xml</value> 24 </list> 25 </property> 26 </bean> 27 配置mapper扫描,对指定maooer包下的的mapper生成对应的实现,并且注入spring容器 28 <bean class="org.mybatis.spring.mapper.mapperscannerconfigurer"> 29 <property name="basepackage" value="com.mapper"></property> 30 </bean> 31 32 </beans>
mvc配置:
1 <?xml version="1.0" encoding="utf-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" 4 xmlns:context="http://www.springframework.org/schema/context" 5 xmlns:mvc="http://www.springframework.org/schema/mvc" 6 xsi:schemalocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache.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"> 7 <!--mvc自动配置--> 8 <mvc:annotation-driven/>
扫描对应文件夹下的所有类 开启注解 9 <context:component-scan base-package="com"></context:component-scan> 10 <!-- 视图解析器 --> 11 <bean class="org.springframework.web.servlet.view.internalresourceviewresolver"> 12 <property name="viewclass" value="org.springframework.web.servlet.view.jstlview"/> 13 <property name="prefix" value="/"/> 14 <property name="suffix" value=".jsp"/> 15 </bean> 16 </beans>
上述有一点需要注意的是:在我们开启mvc配置的时候一定要导入mvc的命名空间,
实例:
项目运行测试:
前台以json格式返回。没有进行多余的操作。若有问题敬请大佬指正,想要一起学习交流的欢迎加入java交流群:682677231
上一篇: 叫黄牛岂不是更好
下一篇: 除了青椒土豆丝,土豆这么做贼好吃