- 博客(11)
- 资源 (1)
- 收藏
- 关注
原创 juint spring test
@RunWith(SpringJUnit4ClassRunner.class) @WebAppConfiguration(value = "src/main/webapp") @ContextConfiguration(locations = {"classpath:spring/spring-demo-mvc.xml"}) public class TestService { @Au
2018-01-12 09:55:58 187
原创 spring cloud pom
4.0.0 org.springframework.boot spring-boot-starter-parent 1.5.7.RELEASE org.springframework.cloud spring-cloud-dependencies Camden.SR4 pom import liyu.test sc 0.0.1-SNAP
2018-01-11 13:56:06 751
原创 java生成mybatis mapper文件
package liyu.test.mybatis.codec; import java.io.File; import java.io.IOException; import java.nio.charset.Charset; import java.nio.file.Files; import java.sql.Connection; import java.sql.Dri
2018-01-11 13:52:53 608
原创 封装jquery之ajax
var $http = function(url,config){ this.url = url; this.error = function(xhr){console.log(xhr.responseText);}; this.success = function(ret){console.log(ret);}; this.dataType = "json"; this.setting
2017-11-21 15:37:54 215
原创 java枚举
public enum AttachmentType { TYPE("合同","1"); private String name; private String code; private AttachmentType(String name, String code) { this.setName(name); this.setCode(code); }
2017-11-12 15:51:54 144
原创 逆向生成mybatic之mapper文件(orcle数据库)
import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import javax.sql.DataSource; import org.apache.commons.lang3.CharUt
2017-11-12 15:50:02 247
原创 redis-3.2.8
make cd src make install PREFIX=/usr/local/redis 在/usr/local/redis/bin下生成几个文件 编辑/etc/profile export PATH=${PATH}:/usr/local/redis/bin source /etc/profile 启动:redis-server redis.co
2017-09-04 17:12:47 184
原创 ssh localhost
ssh localhost实现无密码登录 主要有两步 $ ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa $ cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys 命令1生成空密码摘要 命令2将公钥放入密钥库 如果是实现空密码登录其他机器,也要把公钥放入该机器的密钥库中,使用scp命令 有时候会报错误,
2017-08-27 18:08:26 315
原创 centos6.5配置静态ip
1.虚拟机设置 edit>virsturl network editor:注意subnet ip,subnet mark,以及点开net setting中的gateway ip,并且把dbcp的选择框取消。 2.[root@itcast06 ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE="eth0"
2017-08-13 07:42:51 314 1
原创 使用java.net.URLClassLoader加载类
File file = new File("C:\\Users\\Administrator\\Downloads\\u.jar"); url = file.toURI().toURL(); URLClassLoader uc = new URLClassLoader(new URL[]{url}); Class class = uc.loadClass("t.User"); S
2016-07-01 15:18:20 3863
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人