nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial
整合
创建数据库
导入依赖
建立基本结构和配置框架
编写MyBatis.xml
编写Spring-dao.xml
编写Spring-service.xml
编写web.xml
编写Spring-mvc.xml
编写applicationContext.xml
阅读全文
nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial
MyBatis是一个对JDBC的封装,是一个数据持久化框架
优点减少代码量,降低维护成本,讲SQL写到XML中,降低耦合度,支持动态SQL语句,支持标签映射,
缺点SQL编写工作量大,SQL语句依赖数据库,导致移植性较差
阅读全文
nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial
注解配置Controller这里的19行是spring中的注解扫描,21行是不去处理静态资源,23行是配置处理器的适配器
12345678910111213141516171819202122232425262728293031<?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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd"> <context:component-scan base-package="com.wsx.controller"/> <!-- 不处理静态资源--> <mvc:default-servlet-handler/> <!-- 配置处理器和适配器--> <mvc:annotation-driven/> <!-- 解析器--> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean></beans>
阅读全文
nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial
集群/分布式集群是多台计算机为了完成同一个工作,组合在一起达到更高的效率的系统
分布式是为了完成一个工作,将工作拆分为多个服务,分别运行在不同机器上的系统
阅读全文
nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial
问题提出最近在我的世界群里面看到他们谈论游戏的时候,谈到了服务器上面,他们一谈服务器就是192.168.xxx.xxx, 这就让我很困惑,这不是局域网IP吗,你们是怎么玩到一起去的?
内网穿透就是一种技术,他可以让不同的局域网中的机器通过互联网互联
阅读全文
nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial
SpringMVC少写博客,多思考,多看官方文档, 那我就写一篇算了
更新: 写一篇是不可能写一篇的,这辈子都不可能只写一篇
# MVC
model(dao,service) + view(jsp) + controller(servlet)
## 实体类
我们的实体类可能有很多字段,但是前端传输的时候可能只会传输一两个数据过来,我们就没有必要吧前端传过来的数据封装成为一个实体类,这样很多字段都是空的,浪费资源,实际上我们会对pojo进行细分,分为vo、dto等,来表示实体类的一部分的字段
# 回顾jsp+servlet
## 创建项目
卧槽,还能直接创建一个空的maven项目,然后在其中创建子项目,惊呆了
maven-空骨架-name
导入公共依赖
阅读全文
nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial
需求员工列表|普通CRUD|restfulCRUD-|-|-查询|getEmp|emp…GET添加|addEmp?|emp…POST修改|updateEmp?|emp/{id}…PUT删除|deleteEmp?|emp/{id}…DELETE
阅读全文