最近发现,我对于ssh的 自动注入配置 还是不熟悉,于是整理了一下 终于做了一个 简单的 注入配置出来. 以前都是在applicationContext.xml 里面这样配 <bean id="loginAction" class="com.dj.ssh.action.LoginAction" scope="prototype" autowire="byName"> <property name="…
Eclipse安装Hibernate插件快速生成配置文件 插件链接: http://pan.baidu.com/s/1mi3KVtI 密码: kmjg 1.安装插件: 1.在eclipse顶部窗口help里点击Install New Software 2.点击Add: 3.解压hibernatetools-Update-4.1.2.Final_2014-03-18_15-46-19-B706.zip 4.一直点击next,最后点击我接受协议的按钮: 5.然后点击完成,在安装过程会出现一个警告,点…
说明:本文为<Flink大数据项目实战>学习笔记,想通过视频系统学习Flink这个最火爆的大数据计算框架的同学,推荐学习课程: Flink大数据项目实战:http://t.cn/EJtKhaz 1. 快速生成Flink项目 1.推荐开发工具 idea+maven+git 2.推荐开发语言 Java或者Scala https://ci.apache.org/projects/flink/flink-docs-release-1.6/quickstart/java_api_quickstart.h…
传送门 使用这个插件可以快速生成一些代码,包含 实体类/Mapper接口/*Mapper.xml文件 首先,我们需要搭建一个Maven的项目. 在pom.xml中添加代码 <plugins> <plugin> <!--Mybatis-generator插件,用于自动生成Mapper和POJO--> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generato…
进入新公司已经半年了,各个业务线,技术栈都已经熟悉,工作也已经游刃有余,决定慢下脚步,沉淀积累,回顾一下所用技术栈所包含的基本知识,以及再公司中的实战. 首先回顾新项目搭建 react脚手架目前使用较多的有三个: react-boilerplate react-redux-starter-kit create-react-app                  今天先来回顾一下react的官方脚手架         create-react-app是FaceBook 官方发布了一个无需配置的.…
环境:oracle11g.myeclipse2014 首先在web项目中添加spring框架 现在已经添加完spring框架了 然后我们开始添加Hibernate框架 到这一步Hibernate框架就添加完成了 applicationContext.xml配置文件 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/sche…
https://blog.csdn.net/u010227042/article/details/103803198…
maven依赖 <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <!-- mybatis --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId&g…
ps aux | grep nginx /bin/systemctl stop nginx.service /bin/systemctl start nginx.service /bin/systemctl restart nginx.service /bin/systemctl reload nginx.service 提示错误:Job for nginx.service failed because the control process exited with error code. Se…
一.使用Git Bash 生成一个新的SSH密钥 1. 打开 Git Bash. 2. 邮箱设置粘贴下面的文字,替换成为你自己的邮箱. Github SSH 1 $ ssh-keygen -t rsa -b 4096 -C "your_email@example.com" Git SSH 1 $ ssh-keygen -t rsa -b -C "your_email@example.com" 这将使用所提供的电子邮件作为标签创建一个新的SSH密钥. 下面展示创建中:…