上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: pom.xml application.properties 数据库连接池的配置 强大的JpaRepository 实体User 实体Department Serivce类 RestController类 阅读全文
posted @ 2018-04-25 19:28 ParamousGIS 阅读(276) 评论(0) 推荐(0) 编辑
摘要: pom.xml application.properties 连接池的配置类 SQL DAO类 Service类 RestController类 阅读全文
posted @ 2018-04-25 19:09 ParamousGIS 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 转载自(http://www.cnblogs.com/M-LittleBird/p/5902850.html) 一、下载windows版本的Redis 官网以及没有下载地址,只能在github上下载,官网只提供linux版本的下载 官网下载地址:http://redis.io/download gi 阅读全文
posted @ 2018-04-25 18:52 ParamousGIS 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 1.创建配置文件mongod.cfg,内容如下:systemLog: destination: file path: D:\GreenSoftware\MongodbV3.6\data\log\mongod.logstorage: dbPath: D:\GreenSoftware\MongodbV3 阅读全文
posted @ 2018-04-25 15:25 ParamousGIS 阅读(231) 评论(0) 推荐(0) 编辑
摘要: pom.xml org.springframework.boot spring-boot-starter-jdbc App类package com.smartmap.sample.ch1;import org.springframework.boot.SpringApplication;import org.springframework.... 阅读全文
posted @ 2018-04-23 19:39 ParamousGIS 阅读(138) 评论(0) 推荐(0) 编辑
摘要: package com.sample.smartmap.controller;import java.util.List;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.http.MediaType;import org.springframework.stereoty... 阅读全文
posted @ 2018-04-23 19:12 ParamousGIS 阅读(183) 评论(0) 推荐(0) 编辑
摘要: package com.sample.smartmap.controller;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.http.MediaType;import org.springframework.stereotype.Controller;import o... 阅读全文
posted @ 2018-04-23 19:04 ParamousGIS 阅读(173) 评论(0) 推荐(0) 编辑
摘要: package com.sample.smartmap.controller;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.spr... 阅读全文
posted @ 2018-04-23 19:02 ParamousGIS 阅读(301) 评论(0) 推荐(0) 编辑
摘要: package com.sample.smartmap.controller;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.Get... 阅读全文
posted @ 2018-04-23 18:56 ParamousGIS 阅读(326) 评论(0) 推荐(0) 编辑
摘要: package com.sample.smartmap.controller;import java.io.IOException;import java.math.BigDecimal;import java.util.Date;import java.util.HashMap;import java.util.Map;import org.apache.commons.logging.Log;... 阅读全文
posted @ 2018-04-23 18:50 ParamousGIS 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 方法1@Value("${test.msg}") private String msg;方法2@Autowired private Environment env;String value = env.getProperty("test.msg");方法3@RequestMapping(path="/${query.all}.json", method=RequestMethod.GE... 阅读全文
posted @ 2018-04-23 18:42 ParamousGIS 阅读(144) 评论(0) 推荐(0) 编辑
摘要: Spring Boot建议使用这些模板引擎,避免使用JSP,若一定要使用JSP将无法实现Spring Boot的多种特性pom.xml org.springframework.boot spring-boot-starter-thymeleaf application.propertiesspring.thymeleaf.cache=tru... 阅读全文
posted @ 2018-04-23 18:38 ParamousGIS 阅读(515) 评论(0) 推荐(0) 编辑
摘要: package com.smartmap.sample.ch1.controller.view;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.util.StringUtils;import org.springframew... 阅读全文
posted @ 2018-04-23 18:24 ParamousGIS 阅读(199) 评论(0) 推荐(0) 编辑
摘要: package com.smartmap.sample.ch1.controller.view;import java.io.File;import java.io.IOException;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.core.env.Environ... 阅读全文
posted @ 2018-04-23 18:22 ParamousGIS 阅读(180) 评论(0) 推荐(0) 编辑
摘要: package com.smartmap.sample.ch1.controller.rest;import java.util.List;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;import org.springframework.beans.factory.annota... 阅读全文
posted @ 2018-04-23 18:19 ParamousGIS 阅读(197) 评论(0) 推荐(0) 编辑
摘要: package com.smartmap.sample.ch1.conf;import java.util.List;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.springframework.context.annotation.Conf... 阅读全文
posted @ 2018-04-23 18:18 ParamousGIS 阅读(519) 评论(0) 推荐(0) 编辑
摘要: package com.smartmap.sample.ch1.controller.view;import java.io.IOException;import java.util.Collections;import java.util.HashMap;import java.util.List;import java.util.Map;import javax.servlet.Servlet... 阅读全文
posted @ 2018-04-23 18:16 ParamousGIS 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 1.Windows下的Eclipse中的eclipse.ini -startup plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar --launcher.library plugins/org.eclipse.equino 阅读全文
posted @ 2018-04-18 00:13 ParamousGIS 阅读(672) 评论(0) 推荐(0) 编辑
摘要: 在 “编辑”—>”虚拟网络编辑器“ 里面的vmnet0 桥接模式 里面是自动连接,把他改为真实的物理网卡即可,如下图: 阅读全文
posted @ 2018-04-14 21:02 ParamousGIS 阅读(4220) 评论(0) 推荐(0) 编辑
摘要: CentOS7中的桌面环境1. 安装GNOME桌面环境1.1. 列出所有安装套件[root@appclient ~]# yum groups listLoaded plugins: fastestmirrorThere is no installed groups file.Maybe run: yum groups mark convert (see man yum)base | 3.6 kB ... 阅读全文
posted @ 2018-04-14 18:55 ParamousGIS 阅读(706) 评论(0) 推荐(0) 编辑
摘要: CentOS7配置和管理KubernetesKubernetes(k8s)是自动化容器操作的开源平台,这些操作包括部署,调度和节点集群间扩展。如果你曾经用过Docker容器技术部署容器,那么可以将Docker看成Kubernetes内部使用的低级别组件。Kubernetes不仅仅支持Docker,还支持Rocket,这是另一种容器技术。使用Kubernetes可以:Ø 自动化容器的部署和复制Ø 随... 阅读全文
posted @ 2018-04-14 18:50 ParamousGIS 阅读(446) 评论(0) 推荐(0) 编辑
摘要: CentOS7配置和管理DockerDocker是操作系统级别的虚拟化工具,它能自动化布署在容器中的应用1. 安装Docker1.1. 安装Docker相关软件[root@server1 ~]# yum install -y dockerLoaded plugins: fastestmirrorbase | 3.6 kB 00:00extras | 3.4 kB 00:00updates | 3.... 阅读全文
posted @ 2018-04-14 18:40 ParamousGIS 阅读(4149) 评论(0) 推荐(0) 编辑
摘要: CentOS7配置和管理KVM安装与配置虚拟化软件KVM ( Kernel-based Virtual Machine ) + QEMU,它要求计算机的CPU支持Intel VT or AMD-V功能1. 安装KVM1.1. 安装KVM相关软件[root@server1 ~]# yum install -y qemu-kvm libvirt virt-install bridge-utilsLoa... 阅读全文
posted @ 2018-04-14 18:21 ParamousGIS 阅读(1324) 评论(0) 推荐(0) 编辑
摘要: 待补充 阅读全文
posted @ 2018-04-14 18:05 ParamousGIS 阅读(164) 评论(0) 推荐(0) 编辑
摘要: CentOS7配置iSCSI服务在网络上的存贮服务为iSCSI Target,而连接到iSCSI Target服务的叫iSCSI Initiator1. 直接配置iSCSI Target服务1.1. 安装targetcli软件[root@server1 ~]# yum install -y targetcliLoaded plugins: fastestmirrorbase | 3.6 kB 00... 阅读全文
posted @ 2018-04-14 18:04 ParamousGIS 阅读(10548) 评论(0) 推荐(0) 编辑
摘要: CentOS7配置NFS服务1. 配置NFS服务器端1.1. 安装nfs-utils软件[root@server1 ~]# yum install -y nfs-utilsLoaded plugins: fastestmirrorbase | 3.6 kB 00:00extras | 3.4 kB 00:00updates | 3.4 kB 00:001.2. 配置NFS服务的域名[root@s... 阅读全文
posted @ 2018-04-14 17:52 ParamousGIS 阅读(653) 评论(0) 推荐(0) 编辑
摘要: CentOS7配置SSH服务1. SSH配置1.1. 使用SSH服务更加安全[root@centos7 ~]# vi /etc/ssh/sshd_config设置如下PermitRootLogin noPermitEmptyPasswords noPasswordAuthentication yes[root@centos7 ~]# systemctl restart sshd1.2. 设置防火墙... 阅读全文
posted @ 2018-04-14 17:45 ParamousGIS 阅读(20949) 评论(0) 推荐(0) 编辑
摘要: CentOS7安装配置NTP服务NTP服务是时间同步服务1. 安装NTPd[root@centos7 ~]# yum install -y ntp[jack@centos7 ~]$ vi /etc/ntp.conf添加如下的代码restrict 192.168.0.0 mask 255.255.0.0 nomodify notrap更改时间同步服务器#server 0.centos.pool.nt... 阅读全文
posted @ 2018-04-14 17:33 ParamousGIS 阅读(375) 评论(0) 推荐(0) 编辑
摘要: CentOS7配置sudo如果一些用户共享权限,配置sudo是为了分离用户的职责1. 将root 的权限传递给所有用户[root@centos7 ~]# visudo添加下面的内容到最后一行,使jack拥有root的所有权限jack ALL=(ALL) ALL[root@centos7 ~]# su - jackLast login: Fri Oct 27 06:52:31 CST 2017 fr... 阅读全文
posted @ 2018-04-14 17:31 ParamousGIS 阅读(463) 评论(0) 推荐(0) 编辑
摘要: CentOS7配置vim1. 安装vim[root@centos7 ~]# yum -y install vim-enhancedLoaded plugins: fastestmirrorbase | 3.6 kB 00:00extras | 3.4 kB 00:00updates | 3.4 kB 00:002. 配置命令别名[root@centos7 ~]# vi /etc/profile在最... 阅读全文
posted @ 2018-04-14 17:28 ParamousGIS 阅读(532) 评论(0) 推荐(0) 编辑
摘要: CentOS7服务管理1. 查看服务1.1. 查看所有运行的服务[root@centos7 ~]# systemctl -t serviceUNIT LOAD ACTIVE SUB DESCRIPTIONauditd.service loaded active running Security Auditing Servicecrond.service loaded active running ... 阅读全文
posted @ 2018-04-14 17:26 ParamousGIS 阅读(435) 评论(0) 推荐(0) 编辑
摘要: CentOS7用户管理1. 添加用户[root@centos7 ~]# useradd jack[root@centos7 ~]# passwd jackChanging password for user jack.New password:BAD PASSWORD: The password is shorter than 8 charactersRetype new password:pas... 阅读全文
posted @ 2018-04-14 17:24 ParamousGIS 阅读(971) 评论(0) 推荐(0) 编辑
摘要: CentOS7基本设置 1. 查看相关信息 1.1. 查看系统信息 方法1: [root@centos7 ~]# uname -a Linux centos7.smartmap 3.10.0-514.el7.x86_64 #1 SMP Tue Nov 22 16:42:41 UTC 2016 x86 阅读全文
posted @ 2018-04-14 17:20 ParamousGIS 阅读(488) 评论(0) 推荐(0) 编辑
摘要: CentOS7安装1. 下载CentOS7下载的网址为:http://isoredirect.centos.org/centos/7/isos/x86_64/2. CentOS7安装2.1. 新建虚拟机2.1.1. 虚拟机名与操作系统类型2.1.2. 虚拟机内存大小2.1.3. 虚拟机硬盘设置2.1.4. 虚拟机创建成功2.1.5. 虚拟机设置2.1.6. 虚拟机设置—CPU2.1.7. 虚拟机设... 阅读全文
posted @ 2018-04-14 17:10 ParamousGIS 阅读(478) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-08 22:49 ParamousGIS 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-08 22:45 ParamousGIS 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1.PM管理要点2.PM管理要点--团队建设3.PM管理要点--工作安排4.PM管理要点--人员培养 阅读全文
posted @ 2018-04-08 22:27 ParamousGIS 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 1.项目运营过程2.总的项目开发过程3.项目过程要求4.开发过程5.项目初期问题6.开发人员的每迭代开发流程 阅读全文
posted @ 2018-04-08 22:21 ParamousGIS 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-08 22:13 ParamousGIS 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-08 22:12 ParamousGIS 阅读(273) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页