Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)

一  下载 配置Meaven

连接:http://maven.apache.org/download.cgi

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第1张图片

下载完成 进行解压,

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第2张图片

然后进行配置 meaven

1 新建 MEAVEN_HOME,值为:解压的meaven路径

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第3张图片

2 建立 MEAVEN_OPTS 值为:-Xms128m -Xmx512m,这是为了防止Meaven 在执行期间出现 堆栈溢出

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第4张图片

3 然后添加到系统的路径 %MEAVEN_HOME%\bin:

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第5张图片

4 打开 cmd 测试:

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第6张图片

成功。

二  修改 Meaven 的  setting.xml

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第7张图片

以下直接给出一个比较快的 setting.xml 可以直接复制粘切进行覆盖:


 
C:\Users\admin\.m2\repository<-- 这个为meaven的仓库 可以自定义-->
   
       
            alimaven
            aliyun maven
            http://maven.aliyun.com/nexus/content/groups/public/
            central
       

   

 
   
       nexus 
       
           
                nexus
                local private nexus
                http://maven.oschina.net/content/groups/public/
               
                    true
               

               
                    false
               

           

       

        
       
           
            nexus
            local private nexus
            http://maven.oschina.net/content/groups/public/
           
                true
           

           
                false
           

           

       

   

直接复制粘贴覆盖就行。

三 将Meaven 加入 Eclipse

1 Window---->Perferences--->meaven

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第8张图片 Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第9张图片

将 Meaven 的解压路径添加进去。

下一步:

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第10张图片

四 创建新的Meaven Project

File ---> New --->Meaven Project,选择默认配置 点击Next,出现以下界面,选择最后一个 创建 Web 项目: 

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第11张图片
选择后,直接下一步:

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第12张图片

然后点击 Finish 完成空白项目创建. 基本目录如下,如果有没有的目录,可以进行自己创建。

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第13张图片

项目创建完成后,如果出现错误,解决方法:右键项目,选择maven,然后update project 就可以了

五 接下来进行配置 pom.xml

  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4.0.0
  shxt
  pro1
  war
  0.0.1-SNAPSHOT
  pro1 Maven Webapp
  http://maven.apache.org
 
      4.3.14.RELEASE
 

  
 
 
   
      junit
      junit
      3.8.1
      test
   

     
       
            org.springframework
            spring-core
            ${spring.version}
       

       
            org.springframework
            spring-aop
            ${spring.version}
       

       
            org.springframework
            spring-web
            ${spring.version}
       

       
            org.springframework
            spring-webmvc
            ${spring.version}
       

       
            org.springframework
            spring-jdbc
            ${spring.version}
       

       
            org.springframework
            spring-tx
            ${spring.version}
       

         
       
            org.aspectj
            aspectjrt
            1.8.0
       

       
            org.aspectj
            aspectjweaver
            1.8.0
       

       


    org.mybatis
    mybatis
    3.4.1




    org.mybatis
    mybatis-spring
    1.3.1




    cglib
    cglib
    3.2.4





    mysql
    mysql-connector-java
    5.1.38




    com.alibaba
    druid
    1.1.10

 
       
            javax.servlet
            jstl
            1.2
       

       
       
            log4j
            log4j
            1.2.17
       

       
            org.slf4j
            slf4j-api
            1.7.21
       

    
 
 
    pro1
     
           
                org.apache.maven.plugins
                maven-compiler-plugin
               
                    1.8
                    1.8
               

           

       

 

配置 log4j.properties

#USE THIS SETTING FOR OUTPUT MYBATIS`s SQL ON THE CONSOLE
log4j.rootLogger=DEBUG, Console

#Console
log4j.appender.Console=org.apache.log4j.ConsoleAppender
log4j.appender.Console.layout=org.apache.log4j.PatternLayout
log4j.appender.Console.layout.ConversionPattern=%d [%t] %-5p [%c] - %m%n

log4j.logger.java.sql.ResultSet=INFO
log4j.logger.org.apache=INFO
log4j.logger.java.sql.Connection=DEBUG
log4j.logger.java.sql.Statement=DEBUG
log4j.logger.java.sql.PreparedStatement=DEBUG

生成 db.properties

user=***//数据库名
password=****//数据库密码
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/test

配置DataSource.xml

       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:c="http://www.springframework.org/schema/c"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd 
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd ">
    
   
     
       
       
       
       
   
        
  
     
       

配置 springmvc.xml


    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">

   
   

   
   

   
   

   
            class="org.springframework.web.servlet.view.InternalResourceViewResolver">
       
       
   

配置 spring-tx.xml

       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:c="http://www.springframework.org/schema/c"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd 
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd 
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
       
         
       
           
       
    
       
       

配置 mybatis-config.xml


  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-config.dtd">

   
       
       
       
       
       
       
   

   
   
       
   

配置 spring-mybatis.xml


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

   
   
   
   
   
       
       
       
       
   

    
   
   
       
       
   

最后配置 web.xml

    xmlns="http://java.sun.com/xml/ns/javaee"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee

    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

  Archetype Created Web Application
  
 
    
        contextConfigLocation
        classpath:spring-*.xml
    

    
        org.springframework.web.context.ContextLoaderListener
    

    
    
    
        CharacterEncodingFilter
        org.springframework.web.filter.CharacterEncodingFilter
        
            encoding
            utf-8
        

        
            forceEncoding
            true
        

    

    
        CharacterEncodingFilter
        /*
    

    

    springMvc
    org.springframework.web.servlet.DispatcherServlet
   
      contextConfigLocation
      classpath:springmvc.xml
   

    1
 

 
    springMvc
    /
 

六  写java代码测试:

先看下目录结构:

Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第14张图片Meaven+ SSM框架搭建Web工程(IDE为:Eclipse)_第15张图片

 1 实体类:

package com.shxt.pro.pojo;

import org.springframework.stereotype.Component;

@Component
public class User {
    private Integer id;
    private String name;
    public User() {
        super();
    }
    public User(Integer id, String name) {
        super();
        this.id = id;
        this.name = name;
    }
    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    @Override
    public String toString() {
        return "User [id=" + id + ", name=" + name + "]";
    }
    
}

2 实体方法:

package com.shxt.pro.dao;

import java.util.List;

import org.springframework.stereotype.Component;

import com.shxt.pro.pojo.User;
@Component
public interface UserMapper {
    public List getUsers();
}
UserMapper.xml实现:


        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

   

3 UserService 接口:

package com.shxt.pro.service;

import java.util.List;

import com.shxt.pro.pojo.User;

public interface UserService {
    public List getUsers();
}

接口实现:

package com.shxt.pro.service;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.shxt.pro.dao.UserMapper;
import com.shxt.pro.pojo.User;
@Service("userService")
public class UserServiceImp implements UserService{
    @Autowired
    public UserMapper userMapper;
    @Override
    public List getUsers() {
        
        return userMapper.getUsers();
    }

}
4 Controller 层

package com.shxt.pro.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

import com.shxt.pro.service.UserServiceImp;

@Controller
public class UserController {
    @Autowired
    public UserServiceImp userService;
    
    @RequestMapping("/login")
    public String toIndex() {
        return "index";
    }
}
5 测试Jsp



Hello World!adsfsadf



然后发布在 tomcat上 访问即可。

 

 

 

你可能感兴趣的:(Java基础)