- 博客(11)
- 资源 (1)
- 问答 (1)
- 收藏
- 关注
原创 vscode 装golang失败解决
git clone https://github.com/golang/net.git $GOPATH/src/github.com/golang/net --depth=1git clone https://github.com/golang/sys.git $GOPATH/src/github.com/golang/sys --depth=1git clone https://g...
2019-07-05 14:27:15
776
原创 mybatis逆向工程生成WithBLOBs
<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost/my_schema" userId="my_user" password="my_password"> <property name="nullCata...
2019-04-20 14:46:47
2009
原创 vue导入bootstrap,最简单
npm i jquerynpm i bootstrap在main.js中import 'jquery/dist/jquery.min'import 'bootstrap/dist/css/bootstrap.css'这样就可以生效了,不用网上别人那么繁琐
2019-02-13 16:36:38
3692
2
原创 Shell 脚本(shell script)学习
test.sh #!/bin/bashecho "Hello World !"运行方法1、作为可执行程序将上面的代码保存为 test.sh,并 cd 到相应目录:chmod + x 目录 chmod +x ./test.sh #使脚本具有执行权限./test.sh #执行脚本2、作为解释器参数这种运行方式是,直接运行解释器,其参数就是 shell ...
2018-09-22 14:10:07
769
原创 linux 基本指令
ls: 列出目录 ls [-aAdfFhilnrRSt] 目录名称-a :全部的文件,连同隐藏档( 开头为 . 的文件) 一起列出来(常用) -d :仅列出目录本身,而不是列出目录内的文件数据(常用) -l :长数据串列出,包含文件的属性与权限等等数据;(常用)[root@www ~]# ls [-aAdfFhilnrRSt] 目录名称[root@www ~...
2018-09-20 22:47:34
227
原创 在web.xml自动生成DispatcherServlet 配置
先安装springIDE 详情点击查看https://mp.youkuaiyun.com/postedit/81952003 安装完毕,alt+/ -------拉到下面
2018-08-23 12:20:19
5780
3
原创 eclipse关于spring框架,命名空间自动提示安装Spring Tool Suite
1.help--install new software建议不要勾选2.打开http://spring.io/tools/sts/all/ 可以选取你的系统进行下载 或者 直接用eclipse安装3.演示1)利用eclipse安装只要勾选四个IDE就可以2)本地安装 4.一直点击next即可 。5.重启window--pre...
2018-08-22 22:28:31
645
原创 mybatis逆向工程生成po类和mapper
1.mybatis使用方法,建议使用java代码程序2.建立文件generatorConfig.xml(名字随便命名)需要引入jar包(mybatis-generator-core-1.3.7)<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE generatorConfiguration PUBLIC "-//...
2018-08-01 22:37:59
1812
原创 oracle DBMS_OUTPUT.PUT_LINE输出
declarepSname varchar2(20);pSage varchar2(20);beginsearchS('002',pSname,pSage);dbms_output.put_line(pSname);dbms_output.put_line(pSage);end;刚开始没输出找不到原因,只要运行下 ,就OKset serveroutput on; ...
2018-05-01 11:33:27
1993
原创 安装Tomcat
1. 官网 http://tomcat.apache.org/2.选择版本3. 下载Tomcat建议下载安装版,避免不必要的麻烦。4. 配置电脑->属性->高级系统设置->环境变量->新建选择你安装的目录*因为我是用eclipse,使用tomcat时,必须引用servlet.jar 。在工程中可以使用Servlet
2018-01-07 14:00:46
169
vue怎么导入js,如axios,bootstrap
2019-01-25
TA创建的收藏夹 TA关注的收藏夹
TA关注的人