Integração SSM milho loja de fundo imitação (a) Configuração básica ------

idéias de integração A, SSM

  1. Importar todos os pacotes jar
  2. Adicione todos os arquivos de configuração
  3. SpringMVC registo e Spring Framework em web.xml
  4. Usando engenharia reversa MyBatis gerado automaticamente classes de entidade POJO, as interfaces e Mapper.xml arquivos gerados Mapper
  5. interface de serviço novo e classe de implementação
  6. novo controlador
  7. Adicionando páginas, imagens, css
  8. página rectificação html para a página jsp
  9. função de teste

Em segundo lugar, exemplos

  1. Criar um novo projeto XiaoMi_background, e introduzido configuração do pacote jar
    Aqui Insert Picture Descrição Aqui Insert Picture Descrição
  2. Sob o diretório do projeto criar uma configuração de pacotes, adicionar um perfil no interior e para a pasta de Recursos

Nos recursos de pasta
Aqui Insert Picture Descriçãojdbc.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/xiaomissm?characterEncoding=utf-8
jdbc.username=root
jdbc.password=123456

applicationContext-dao.xml

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
		http://www.springframework.org/schema/beans/spring-beans-4.0.xsd 
		http://www.springframework.org/schema/mvc 
		http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd 
		http://www.springframework.org/schema/context 
		http://www.springframework.org/schema/context/spring-context-4.0.xsd 
		http://www.springframework.org/schema/aop 
		http://www.springframework.org/schema/aop/spring-aop-4.0.xsd 
		http://www.springframework.org/schema/tx 
		http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
		http://www.springframework.org/schema/task
   		http://www.springframework.org/schema/task/spring-task-4.0.xsd
		http://code.alibabatech.com/schema/dubbo">


	<!--读取属性文件-->
	<context:property-placeholder location="classpath:jdbc.properties"></context:property-placeholder>
	<!--配置数据源-->
	<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
		<property name="driverClassName" value="${jdbc.driver}"></property>
		<property name="url" value="${jdbc.url}"></property>
		<property name="username" value="${jdbc.username}"></property>
		<property name="password" value="${jdbc.password}"></property>
	</bean>
	<!--配置mybatis工厂-->
	<bean class="org.mybatis.spring.SqlSessionFactoryBean">
		<!--工厂要用到的数据源-->
		<property name="dataSource" ref="dataSource"></property>
		<!--配置mybatis的配置文件-->
		<property name="configLocation" value="classpath:SqlMapConfig.xml"></property>
		<!--配置pojo-->
		<property name="typeAliasesPackage" value="com.oracle.xiaomi.pojo"></property>
	</bean>
	<!--配置mapper所在的包-->
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<property name="basePackage" value="com.oracle.xiaomi.mapper"></property>
	</bean>

</beans>

applicationContext-service.xml

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop" 
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:task="http://www.springframework.org/schema/task"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
		http://www.springframework.org/schema/beans/spring-beans-4.0.xsd 
		http://www.springframework.org/schema/mvc 
		http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd 
		http://www.springframework.org/schema/context 
		http://www.springframework.org/schema/context/spring-context-4.0.xsd 
		http://www.springframework.org/schema/aop 
		http://www.springframework.org/schema/aop/spring-aop-4.0.xsd 
		http://www.springframework.org/schema/tx 
		http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
		http://www.springframework.org/schema/task
   		http://www.springframework.org/schema/task/spring-task-4.0.xsd">
		
	<!--配置业务逻辑层,给spring扫描识别该包下的所有类,使用注解方式-->
	<context:component-scan base-package="com.oracle.xiaomi.service"></context:component-scan>
		
</beans>

springmvc.xml

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	   xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop" 
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:task="http://www.springframework.org/schema/task"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
		http://www.springframework.org/schema/beans/spring-beans-4.0.xsd 
		http://www.springframework.org/schema/mvc 
		http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd 
		http://www.springframework.org/schema/context 
		http://www.springframework.org/schema/context/spring-context-4.0.xsd 
		http://www.springframework.org/schema/aop 
		http://www.springframework.org/schema/aop/spring-aop-4.0.xsd 
		http://www.springframework.org/schema/tx 
		http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
		http://www.springframework.org/schema/task
   		http://www.springframework.org/schema/task/spring-task-4.0.xsd">

	<!--扫描根包 -->
	<context:component-scan base-package="com.oracle.xiaomi.controller"></context:component-scan>

	<!--视图解析器-->
<bean id="ResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
	<property name="prefix" value="/admin/"></property>
	<property name="suffix" value=".jsp"></property>
</bean>
	<!--文件上传插件-->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"></bean>
	<!--注解JSON驱动-->
	<mvc:annotation-driven></mvc:annotation-driven>

</beans>

SqlMapConfig.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>

    <!--</plugins>-->
    <plugins>
        <plugin interceptor="com.github.pagehelper.PageInterceptor">
        </plugin>
    </plugins>
</configuration>
  1. SpringMVC registo e Spring Framework em 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">
    <!--中文编码-->
    <filter>
        <filter-name>encode</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>encode</filter-name>
        <url-pattern>*.action</url-pattern>
    </filter-mapping>

    <!--springMVC注册-->
    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springmvc.xml</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>*.action</url-pattern>
    </servlet-mapping>
    <!--spring注册-->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext-*.xml</param-value>
    </context-param>
</web-app>
  1. MyBatis engenharia reversa
    modificações reverter arquivo de configuração ferramenta de engenharia
    Aqui Insert Picture DescriçãoAqui Insert Picture Descrição
    para executar a função principal
    Aqui Insert Picture Descriçãode atualização
    Aqui Insert Picture Descrição
    copiá-lo para o projeto
    Aqui Insert Picture Descrição
    será colocado diretório de páginas web

Todas as páginas, pacote jar, engenharia reversa, arquivo sql
de link: https: //pan.baidu.com/s/1A-aPnkM9jcn1Q2V8YdlvMA
código de extração: uvz2

Publicado 19 artigos originais · ganhou elogios 6 · vista 1036

Acho que você gosta

Origin blog.csdn.net/weixin_43288999/article/details/104797767
Recomendado
Clasificación