Java+Spring+MySql环境中安装和配置MyBatis的教程

1.MyBatis简介与配置MyBatis+Spring+MySql

1.1MyBatis简介
      MyBatis 是一个可以自定义SQL、存储过程和高级映射的持久层框架。MyBatis 摒除了大部分的JDBC代码、手工设置参数和结果集重获。MyBatis 只使用简单的XML 和注解来配置和映射基本数据类型、Map 接口和POJO 到数据库记录。相对Hibernate和Apache OJB等“一站式”ORM解决方案而言,Mybatis 是一种“半自动化”的ORM实现。
需要使用的Jar包:mybatis-3.0.2.jar(mybatis核心包)。mybatis-spring-1.0.0.jar(与Spring结合包)。
下载地址:
http://ibatis.apache.org/tools/ibator
http://code.google.com/p/mybatis/
 
1.2MyBatis+Spring+MySql简单配置
1.2.1搭建Spring环境
(1)建立maven的web项目;
(2)加入Spring框架、配置文件;
(3)在pom.xml中加入所需要的jar包(spring框架的、mybatis、mybatis-spring、junit等);
(4)更改web.xml和spring的配置文件;
(5)添加一个jsp页面和对应的Controller;
(6)测试。
可参照:http://limingnihao.iteye.com/blog/830409。使用Eclipse的Maven构建SpringMVC项目

1.2.2建立MySql数据库
建立一个学生选课管理数据库。
表:学生表、班级表、教师表、课程表、学生选课表。
逻辑关系:每个学生有一个班级;每个班级对应一个班主任教师;每个教师只能当一个班的班主任;
使用下面的sql进行建数据库,先建立学生表,插入数据(2条以上)。
更多sql请下载项目源文件,在resource/sql中。

/* 建立数据库 */
CREATE DATABASE STUDENT_MANAGER;
USE STUDENT_MANAGER; 

/***** 建立student表 *****/
CREATE TABLE STUDENT_TBL
(
  STUDENT_ID     VARCHAR(255) PRIMARY KEY,
  STUDENT_NAME    VARCHAR(10) NOT NULL,
  STUDENT_SEX    VARCHAR(10),
  STUDENT_BIRTHDAY  DATE,
  CLASS_ID      VARCHAR(255)
); 

/*插入学生数据*/
INSERT INTO STUDENT_TBL (STUDENT_ID,
             STUDENT_NAME,
             STUDENT_SEX,
             STUDENT_BIRTHDAY,
             CLASS_ID)
 VALUES  (123456,
      '某某某',
      '女',
      '1980-08-01',
      121546
      )

创建连接MySql使用的配置文件mysql.properties。

jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/student_manager?user=root&password=limingnihao&useUnicode=true&characterEncoding=UTF-8

1.2.3搭建MyBatis环境
顺序随便,现在的顺序是因为可以尽量的少的修改写好的文件。

1.2.3.1创建实体类: StudentEntity

public class StudentEntity implements Serializable { 

  private static final long serialVersionUID = 3096154202413606831L;
  private ClassEntity classEntity;
  private Date studentBirthday;
  private String studentID;
  private String studentName;
  private String studentSex; 

  public ClassEntity getClassEntity() {
    return classEntity;
  } 

  public Date getStudentBirthday() {
    return studentBirthday;
  } 

  public String getStudentID() {
    return studentID;
  } 

  public String getStudentName() {
    return studentName;
  } 

  public String getStudentSex() {
    return studentSex;
  } 

  public void setClassEntity(ClassEntity classEntity) {
    this.classEntity = classEntity;
  } 

  public void setStudentBirthday(Date studentBirthday) {
    this.studentBirthday = studentBirthday;
  } 

  public void setStudentID(String studentID) {
    this.studentID = studentID;
  } 

  public void setStudentName(String studentName) {
    this.studentName = studentName;
  } 

  public void setStudentSex(String studentSex) {
    this.studentSex = studentSex;
  }
}

1.2.3.2创建数据访问接口
Student类对应的dao接口:StudentMapper。

public interface StudentMapper { 

  public StudentEntity getStudent(String studentID); 

  public StudentEntity getStudentAndClass(String studentID); 

  public List<StudentEntity> getStudentAll(); 

  public void insertStudent(StudentEntity entity); 

  public void deleteStudent(StudentEntity entity); 

  public void updateStudent(StudentEntity entity);
}

1.2.3.3创建SQL映射语句文件

Student类的sql语句文件StudentMapper.xml
resultMap标签:表字段与属性的映射。
Select标签:查询sql。

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.manager.data.StudentMapper"> 

  <resultMap type="StudentEntity" id="studentResultMap">
    <id property="studentID" column="STUDENT_ID"/>
    <result property="studentName" column="STUDENT_NAME"/>
    <result property="studentSex" column="STUDENT_SEX"/>
    <result property="studentBirthday" column="STUDENT_BIRTHDAY"/>
  </resultMap> 

  <!-- 查询学生,根据id -->
  <select id="getStudent" parameterType="String" resultType="StudentEntity" resultMap="studentResultMap">
    <![CDATA[
      SELECT * from STUDENT_TBL ST
        WHERE ST.STUDENT_ID = #{studentID}
    ]]>
  </select> 

  <!-- 查询学生列表 -->
  <select id="getStudentAll" resultType="com.manager.data.model.StudentEntity" resultMap="studentResultMap">
    <![CDATA[
      SELECT * from STUDENT_TBL
    ]]>
  </select> 

</mapper>

1.2.3.4创建MyBatis的mapper配置文件
在src/main/resource中创建MyBatis配置文件:mybatis-config.xml。
typeAliases标签:给类起一个别名。com.manager.data.model.StudentEntity类,可以使用StudentEntity代替。
Mappers标签:加载MyBatis中实体类的SQL映射语句文件。

<?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>
  <typeAliases>
    <typeAlias alias="StudentEntity" type="com.manager.data.model.StudentEntity"/>
  </typeAliases>
  <mappers>
    <mapper resource="com/manager/data/maps/StudentMapper.xml" />
  </mappers>
</configuration>

1.2.3.5修改Spring 的配置文件
主要是添加SqlSession的制作工厂类的bean:SqlSessionFactoryBean,(在mybatis.spring包中)。需要指定配置文件位置和dataSource。
和数据访问接口对应的实现bean。通过MapperFactoryBean创建出来。需要执行接口类全称和SqlSession工厂bean的引用。

<!-- 导入属性配置文件 -->
<context:property-placeholder location="classpath:mysql.properties" /> 

<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
  <property name="driverClassName" value="${jdbc.driverClassName}" />
  <property name="url" value="${jdbc.url}" />
</bean> 

<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  <property name="dataSource" ref="dataSource" />
</bean> 

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
  <property name="configLocation" value="classpath:mybatis-config.xml" />
  <property name="dataSource" ref="dataSource" />
</bean> 

<!— mapper bean -->
<bean id="studentMapper" class="org.mybatis.spring.MapperFactoryBean">
  <property name="mapperInterface" value="com.manager.data.StudentMapper" />
  <property name="sqlSessionFactory" ref="sqlSessionFactory" />
</bean>

也可以不定义mapper的bean,使用注解:
将StudentMapper加入注解

@Repository
@Transactional
public interface StudentMapper {
}

对应的需要在dispatcher-servlet.xml中加入扫描:

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  <property name="annotationClass" value="org.springframework.stereotype.Repository"/>
  <property name="basePackage" value="com.liming.manager"/>
  <property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>

1.2.4测试StudentMapper
使用SpringMVC测试,创建一个TestController,配置tomcat,访问index.do页面进行测试:

@Controller
public class TestController { 

  @Autowired
  private StudentMapper studentMapper; 

  @RequestMapping(value = "index.do")
  public void indexPage() {
    StudentEntity entity = studentMapper.getStudent("10000013");
    System.out.println("name:" + entity.getStudentName());
  }
}

使用Junit测试:

@RunWith(value = SpringJUnit4ClassRunner.class)
@ContextConfiguration(value = "test-servlet.xml")
public class StudentMapperTest { 

  @Autowired
  private ClassMapper classMapper; 

  @Autowired
  private StudentMapper studentMapper; 

  @Transactional
  public void getStudentTest(){
    StudentEntity entity = studentMapper.getStudent("10000013");
    System.out.println("" + entity.getStudentID() + entity.getStudentName()); 

    List<StudentEntity> studentList = studentMapper.getStudentAll();
    for( StudentEntity entityTemp : studentList){
      System.out.println(entityTemp.getStudentName());
    } 

  }
}

2.MyBatis的主配置文件
在定义sqlSessionFactory时需要指定MyBatis主配置文件:

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
  <property name="configLocation" value="classpath:mybatis-config.xml" />
  <property name="dataSource" ref="dataSource" />
</bean>

MyBatis配置文件中大标签configuration下子标签包括:

configuration
|--- properties
|--- settings
|--- typeAliases
|--- typeHandlers
|--- objectFactory
|--- plugins
|--- environments
|--- |--- environment
|--- |--- |--- transactionManager
|--- |--- |__ dataSource
|__ mappers

2.1 properties属性

properties和java的.properties的配置文件有关。配置properties的resource指定.properties的路径,然后再在properties标签下配置property的name和value,则可以替换.properties文件中相应属性值。

  <!-- 属性替换 -->
<properties resource="mysql.properties">
  <property name="jdbc.driverClassName" value="com.mysql.jdbc.Driver"/>
  <property name="jdbc.url" value="jdbc:mysql://localhost:3306/student_manager"/>
  <property name="username" value="root"/>
  <property name="password" value="limingnihao"/>
</properties>

2.2 settings设置
这是MyBatis 修改操作运行过程细节的重要的步骤。下方这个表格描述了这些设置项、含义和默认值。


设置项


描述


允许值


默认值


cacheEnabled


对在此配置文件下的所有cache 进行全局性开/关设置。


true | false


true


lazyLoadingEnabled


全局性设置懒加载。如果设为‘false',则所有相关联的都会被初始化加载。


true | false


true


aggressiveLazyLoading


当设置为‘true'的时候,懒加载的对象可能被任何懒属性全部加载。否则,每个属性都按需加载。


true | false


true


multipleResultSetsEnabled


允许和不允许单条语句返回多个数据集(取决于驱动需求)


true | false


true


useColumnLabel


使用列标签代替列名称。不同的驱动器有不同的作法。参考一下驱动器文档,或者用这两个不同的选项进行测试一下。


true | false


true


useGeneratedKeys


允许JDBC 生成主键。需要驱动器支持。如果设为了true,这个设置将强制使用被生成的主键,有一些驱动器不兼容不过仍然可以执行。


true | false


false


autoMappingBehavior


指定MyBatis 是否并且如何来自动映射数据表字段与对象的属性。PARTIAL将只自动映射简单的,没有嵌套的结果。FULL 将自动映射所有复杂的结果。


NONE,

PARTIAL,

FULL


PARTIAL


defaultExecutorType


配置和设定执行器,SIMPLE 执行器执行其它语句。REUSE 执行器可能重复使用prepared statements 语句,BATCH执行器可以重复执行语句和批量更新。


SIMPLE

REUSE

BATCH


SIMPLE


defaultStatementTimeout


设置一个时限,以决定让驱动器等待数据库回应的多长时间为超时


正整数


Not Set

(null)

例如:

<settings>
  <setting name="cacheEnabled" value="true" />
  <setting name="lazyLoadingEnabled" value="true" />
  <setting name="multipleResultSetsEnabled" value="true" />
  <setting name="useColumnLabel" value="true" />
  <setting name="useGeneratedKeys" value="false" />
  <setting name="enhancementEnabled" value="false" />
  <setting name="defaultExecutorType" value="SIMPLE" />
</settings>

2.3 typeAliases类型别名
类型别名是Java 类型的简称。
它仅仅只是关联到XML 配置,简写冗长的JAVA 类名。例如:

<typeAliases>
  <typeAlias alias="UserEntity" type="com.manager.data.model.UserEntity" />
  <typeAlias alias="StudentEntity" type="com.manager.data.model.StudentEntity" />
  <typeAlias alias="ClassEntity" type="com.manager.data.model.ClassEntity" />
</typeAliases>

使用这个配置,“StudentEntity”就能在任何地方代替“com.manager.data.model.StudentEntity”被使用。
对于普通的Java类型,有许多内建的类型别名。它们都是大小写不敏感的,由于重载的名字,要注意原生类型的特殊处理。


别名


映射的类型


_byte


byte


_long


long


_short


short


_int


int


_integer


int


_double


double


_float


float


_boolean


boolean


string


String


byte


Byte


long


Long


short


Short


int


Integer


integer


Integer


double


Double


float


Float


boolean


Boolean


date


Date


decimal


BigDecimal


bigdecimal


BigDecimal


object


Object


map


Map


hashmap


HashMap


list


List


arraylist


ArrayList


collection


Collection


iterator


Iterator

2.4 typeHandlers类型句柄
无论是MyBatis在预处理语句中设置一个参数,还是从结果集中取出一个值时,类型处理器被用来将获取的值以合适的方式转换成Java类型。下面这个表格描述了默认的类型处理器。


类型处理器


Java类型


JDBC类型


BooleanTypeHandler


Boolean,boolean


任何兼容的布尔值


ByteTypeHandler


Byte,byte


任何兼容的数字或字节类型


ShortTypeHandler


Short,short


任何兼容的数字或短整型


IntegerTypeHandler


Integer,int


任何兼容的数字和整型


LongTypeHandler


Long,long


任何兼容的数字或长整型


FloatTypeHandler


Float,float


任何兼容的数字或单精度浮点型


DoubleTypeHandler


Double,double


任何兼容的数字或双精度浮点型


BigDecimalTypeHandler


BigDecimal


任何兼容的数字或十进制小数类型


StringTypeHandler


String


CHAR和VARCHAR类型


ClobTypeHandler


String


CLOB和LONGVARCHAR类型


NStringTypeHandler


String


NVARCHAR和NCHAR类型


NClobTypeHandler


String


NCLOB类型


ByteArrayTypeHandler


byte[]


任何兼容的字节流类型


BlobTypeHandler


byte[]


BLOB和LONGVARBINARY类型


DateTypeHandler


Date(java.util)


TIMESTAMP类型


DateOnlyTypeHandler


Date(java.util)


DATE类型


TimeOnlyTypeHandler


Date(java.util)


TIME类型


SqlTimestampTypeHandler


Timestamp(java.sql)


TIMESTAMP类型


SqlDateTypeHandler


Date(java.sql)


DATE类型


SqlTimeTypeHandler


Time(java.sql)


TIME类型


ObjectTypeHandler


Any


其他或未指定类型


EnumTypeHandler


Enumeration类型


VARCHAR-任何兼容的字符串类型,作为代码存储(而不是索引)。

你可以重写类型处理器或创建你自己的类型处理器来处理不支持的或非标准的类型。要这样做的话,简单实现TypeHandler接口(org.mybatis.type),然后映射新的类型处理器类到Java类型,还有可选的一个JDBC类型。然后再typeHandlers中添加这个类型处理器。
新定义的类型处理器将会覆盖已经存在的处理Java的String类型属性和VARCHAR参数及结果的类型处理器。要注意MyBatis不会审视数据库元信息来决定使用哪种类型,所以你必须在参数和结果映射中指定那是VARCHAR类型的字段,来绑定到正确的类型处理器上。这是因为MyBatis直到语句被执行都不知道数据类型的这个现实导致的。

public class LimingStringTypeHandler implements TypeHandler { 

  @Override
  public void setParameter(PreparedStatement ps, int i, Object parameter, JdbcType jdbcType) throws SQLException {
    System.out.println("setParameter - parameter: " + ((String) parameter) + ", jdbcType: " + jdbcType.TYPE_CODE);
    ps.setString(i, ((String) parameter));
  } 

  @Override
  public Object getResult(ResultSet rs, String columnName) throws SQLException {
    System.out.println("getResult - columnName: " + columnName);
    return rs.getString(columnName);
  } 

  @Override
  public Object getResult(CallableStatement cs, int columnIndex) throws SQLException {
    System.out.println("getResult - columnIndex: " + columnIndex);
    return cs.getString(columnIndex);
  }
}

在配置文件的typeHandlers中添加typeHandler标签。

<typeHandlers>
  <typeHandler javaType="String" jdbcType="VARCHAR" handler="liming.student.manager.type.LimingStringTypeHandler"/>
</typeHandlers>

2.5 ObjectFactory对象工厂
 
每次MyBatis 为结果对象创建一个新实例,都会用到ObjectFactory。默认的ObjectFactory 与使用目标类的构造函数创建一个实例毫无区别,如果有已经映射的参数,那也可能使用带参数的构造函数。
如果你重写ObjectFactory 的默认操作,你可以通过继承org.apache.ibatis.reflection.factory.DefaultObjectFactory创建一下你自己的。
ObjectFactory接口很简单。它包含两个创建用的方法,一个是处理默认构造方法的,另外一个是处理带参数构造方法的。最终,setProperties方法可以被用来配置ObjectFactory。在初始化你的ObjectFactory实例后,objectFactory元素体中定义的属性会被传递给setProperties方法。

public class LimingObjectFactory extends DefaultObjectFactory { 

  private static final long serialVersionUID = -399284318168302833L; 

  @Override
  public Object create(Class type) {
    return super.create(type);
  } 

  @Override
  public Object create(Class type, List<Class> constructorArgTypes, List<Object> constructorArgs) {
    System.out.println("create - type: " + type.toString());
    return super.create(type, constructorArgTypes, constructorArgs);
  } 

  @Override
  public void setProperties(Properties properties) {
    System.out.println("setProperties - properties: " + properties.toString() + ", someProperty: " + properties.getProperty("someProperty"));
    super.setProperties(properties);
  } 

}

配置文件中添加objectFactory标签

<objectFactory type="liming.student.manager.configuration.LimingObjectFactory">
  <property name="someProperty" value="100"/>
</objectFactory>

2.6 plugins插件

MyBatis允许你在某一点拦截已映射语句执行的调用。默认情况下,MyBatis允许使用插件来拦截方法调用:

  • Executor(update, query, flushStatements, commit, rollback, getTransaction, close, isClosed)
  • ParameterHandler(getParameterObject, setParameters)
  • ResultSetHandler(handleResultSets, handleOutputParameters)
  • StatementHandler(prepare, parameterize, batch, update, query)

这些类中方法的详情可以通过查看每个方法的签名来发现,而且它们的源代码在MyBatis的发行包中有。你应该理解你覆盖方法的行为,假设你所做的要比监视调用要多。如果你尝试修改或覆盖一个给定的方法,你可能会打破MyBatis的核心。这是低层次的类和方法,要谨慎使用插件。
使用插件是它们提供的非常简单的力量。简单实现拦截器接口,要确定你想拦截的指定签名。

2.7 environments环境
MyBatis 可以配置多个环境。这可以帮助你SQL 映射对应多种数据库等。

2.8 mappers映射器
这里是告诉MyBatis 去哪寻找映射SQL 的语句。可以使用类路径中的资源引用,或者使用字符,输入确切的URL 引用。
例如:

<mappers>
  <mapper resource="com/manager/data/maps/UserMapper.xml" />
  <mapper resource="com/manager/data/maps/StudentMapper.xml" />
  <mapper resource="com/manager/data/maps/ClassMapper.xml" />
</mappers>
(0)

相关推荐

  • spring集成mybatis实现mysql数据库读写分离

    前言 在网站的用户达到一定规模后,数据库因为负载压力过高而成为网站的瓶颈.幸运的是目前大部分的主流数据库都提供主从热备功能,通过配置两台数据库主从关系,可以将一台数据库的数据更新同步到另一台服务器上.网站利用数据库的这一功能,实现数据库读写分离,从而改善数据库负载压力.如下图所示: 应用服务器在写数据的时候,访问主数据库,主数据库通过主从复制机制将数据更新同步到从数据库,这样当应用服务器读数据的时候,就可以通过从数据库获得数据.为了便于应用程序访问读写分离后的数据库,通常在应用服务器使用专门的数

  • Spring MVC+MyBatis+MySQL实现分页功能实例

    前言 最近因为工作的原因,在使用SSM框架实现一个商品信息展示的功能,商品的数据较多,不免用到分页,查了一番MyBatis分页的做法,终于是实现了,在这里记录下来分享给大家,下面来一起看看详细的介绍: 方法如下:  首先写一个分页的工具类,定义当前页数,总页数,每页显示多少等属性. /** * 分页 工具类 */ public class Page implements Serializable { private static final long serialVersionUID = -22

  • MyBatis简介与配置MyBatis+Spring+MySql的方法

    1.1MyBatis简介 MyBatis 是一个可以自定义SQL.存储过程和高级映射的持久层框架.MyBatis 摒除了大部分的JDBC代码.手工设置参数和结果集重获.MyBatis 只使用简单的XML 和注解来配置和映射基本数据类型.Map 接口和POJO 到数据库记录.相对Hibernate和Apache OJB等"一站式"ORM解决方案而言,Mybatis 是一种"半自动化"的ORM实现. 需要使用的Jar包:mybatis-3.0.2.jar(mybatis

  • JAVA操作HDFS案例的简单实现

    本文介绍了JAVA操作HDFS案例的简单实现,分享给大家,也给自己做个笔记 Jar包引入,pom.xml: <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>2.8.0</version> </dependency> <dependency> <gr

  • Spring整合MyBatis(Maven+MySQL)图文教程详解

    一. 使用Maven创建一个Web项目 为了完成Spring4.x与MyBatis3.X的整合更加顺利,先回顾在Maven环境下创建Web项目并使用MyBatis3.X,第一.二点内容多数是回顾过去的内容 . 1.2.点击"File"->"New"->"Other"->输入"Maven",新建一个"Maven Project",如下图所示: 1.2.请勾选"Create a si

  • 解决springmvc+mybatis+mysql中文乱码问题

    近日使用ajax请求springmvc后台查询mysql数据库,页面显示中文出现乱码 最初在mybatis配置如下 <select id="queryContentById" resultType = "java.lang.String" parameterType="String" > select text from News where id=#{o} </select> 其中表News的text字段为blob类型

  • Spring mvc整合mybatis(crud+分页插件)操作mysql

    一.web.xml配置 我们都知道java ee的项目启动的第一件事就是读取web.xml,spring mvc 的web.xml我在上一篇文章中也做了详细讲解,不懂的可以回头看看,讲解的这个项目源码我也会放到github上,也可以去那里看看,这里就不做介绍了. web.xml 配置 <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:/c

  • Java+Spring+MySql环境中安装和配置MyBatis的教程

    1.MyBatis简介与配置MyBatis+Spring+MySql 1.1MyBatis简介       MyBatis 是一个可以自定义SQL.存储过程和高级映射的持久层框架.MyBatis 摒除了大部分的JDBC代码.手工设置参数和结果集重获.MyBatis 只使用简单的XML 和注解来配置和映射基本数据类型.Map 接口和POJO 到数据库记录.相对Hibernate和Apache OJB等"一站式"ORM解决方案而言,Mybatis 是一种"半自动化"的O

  • intellij idea中安装、配置mybatis插件Free Mybatis plugin的教程详解

    场景: 使用intellij idea开发,持久层dao使用了mybatis,经常需要编辑mybatis的××Mapper.java和××Mapper.xml,因为是接口里一个方法对应xml里的一个SQL的id,当需要找找个方法时候得拷贝找个方法名,然后在对应文件中ctrl+f全文查找,相当麻烦.本篇讲述的使用mybatis的插件后将极大的提高效率.效果如图: 即从××Mapper.java接口和××Mapper.xml中能由箭头直接点进去查看相对应的方法及SQL. 步骤: 1.ctrl+alt

  • Windows下MySQL下载与安装、配置与使用教程

    MySQL的概述 MySQL是一个关系型数据库管理系统,一个数据库是一个结构化的数据集合.最初是由瑞典MySQL AB公司开发,现在归属Oracle公司.MySQL是一种关联数据库管理系统,关联数据库将数据保存在不同的表中,而不是将所有数据放在一个大仓库内,这样就增加了速度并提高了灵活性. MySQL特性 使用C和C++编写,并使用多种编译器进行测试,保证源代码的可移植性. 支持Windows.Mac OS.AIX.BSDI.LInux等多种操作系统. 为多种编程语言提供了API.如C.C++.

  • CentOs6.5中安装和配置vsftp简明教程

    一.vsftp安装篇 复制代码 代码如下: # 安装vsftpdyum -y install vsftpd# 启动service vsftpd start# 开启启动chkconfig vsftpd on 二.vsftp相关命令之服务篇 复制代码 代码如下: # 启动ftp服务service vsftpd start# 查看ftp服务状态service vsftpd status # 重启ftp服务service vsftpd restart# 关闭ftp服务service vsftpd sto

  • python3在各种服务器环境中安装配置过程

    1.在服务器环境中安装 centos yum install python3X[X代表版本号] ubuntu apt-get install python3.X[X代码小版本号] 源码包编译安装 步骤1.首先,通过apt在终端中运行以下以下命令,确保所有系统软件包都是最新的. sudo apt update sudo apt upgrade sudo apt install software-properties-common 步骤2.在Ubuntu 20.04上安装Python 3.9. 从源

  • Java Spring开发环境搭建及简单入门示例教程

    本文实例讲述了Java Spring开发环境搭建及简单入门示例.分享给大家供大家参考,具体如下: 前言 虽然之前用过Spring,但是今天试着去搭建依然遇到了困难,而且上网找教程,很多写的是在web里使用Spring MVC的示例,官方文档里的getting start一开始就讲原理去了(可能打开的方法不对).没办法,好不容易实验成功了,记下来免得自己以后麻烦. 添加依赖包 进入spring官网,切换到projects下点击 spring framework.官网上写的是以maven依赖的形式写

  • Ubuntu下MySQL安装及配置远程登录教程

    本文实例为大家分享了MySQL安装及配置远程登录教程,供大家参考,具体内容如下 一.安装MySQL 一.安装MySQL 1. sudo apt-get install mysql-server 2. sudo apt-get install mysql-client 3. sudo apt-get install libmysqlclient-dev 注意:安装过程中会提示设置密码和确认密码.记住密码. 安装完成之后可以使用如下命令来检查是否安装成功: root@root:/# ps aux|g

  • Spring MVC环境中文件上传功能的实现方法详解

    前言 我们在实际开发过程中,尤其是web项目开发,文件上传和下载的需求的功能非常场景,比如说用户头像.商品图片.邮件附件等等.其实文件上传下载的本质都是通过流的形式进行读写操作,而在开发中不同的框架都会对文件上传和下载有或多或少的封装,这里就以Spring MVC环境中文件的上传为例,讲解Spirng MVC环境下的文件上传功能实现.下面话不多说了,来一起看看详细的介绍吧. 一.客户端编程 由于多数文件上传都是通过表单形式提交给后台服务器的,因此,要实现文件上传功能,就需要提供一个文件上传的表单

  • Java Spring MVC 上传下载文件配置及controller方法详解

    下载: 1.在spring-mvc中配置(用于100M以下的文件下载) <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> <property name="messageConverters"> <list> <!--配置下载返回类型--> <bean class="or

  • Win7下Python与Tensorflow-CPU版开发环境的安装与配置过程

    以此文记录Python与Tensorflow及其开发环境的安装与配置过程,以备以后参考. 1 硬件与系统条件 Win7 64位系统,显卡为NVIDIA GeforeGT 635M 2 安装策略 a.由于以上原因,选择在win7下安装cpu版的tensorflow,使用anconda安装,总结下来,这么做是代价最小的. b. 首先,不要急于下载Python,因为最新的版本可能会与Anaconda中的Python版本发生冲突.以目前(截止2017-06-17日)的情况,Anaconda选择Anaco

随机推荐