上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: 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 阅读(137) 评论(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 阅读(182) 评论(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 阅读(172) 评论(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 阅读(299) 评论(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 阅读(325) 评论(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 阅读(260) 评论(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 阅读(143) 评论(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 阅读(514) 评论(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 阅读(198) 评论(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 阅读(179) 评论(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 阅读(196) 评论(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 阅读(518) 评论(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 阅读(670) 评论(0) 推荐(0) 编辑
摘要: 在 “编辑”—>”虚拟网络编辑器“ 里面的vmnet0 桥接模式 里面是自动连接,把他改为真实的物理网卡即可,如下图: 阅读全文
posted @ 2018-04-14 21:02 ParamousGIS 阅读(4216) 评论(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 阅读(702) 评论(0) 推荐(0) 编辑
摘要: CentOS7配置和管理KubernetesKubernetes(k8s)是自动化容器操作的开源平台,这些操作包括部署,调度和节点集群间扩展。如果你曾经用过Docker容器技术部署容器,那么可以将Docker看成Kubernetes内部使用的低级别组件。Kubernetes不仅仅支持Docker,还支持Rocket,这是另一种容器技术。使用Kubernetes可以:Ø 自动化容器的部署和复制Ø 随... 阅读全文
posted @ 2018-04-14 18:50 ParamousGIS 阅读(442) 评论(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 阅读(4087) 评论(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 阅读(1318) 评论(0) 推荐(0) 编辑
摘要: 待补充 阅读全文
posted @ 2018-04-14 18:05 ParamousGIS 阅读(163) 评论(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 阅读(10534) 评论(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 阅读(652) 评论(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 阅读(20940) 评论(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 阅读(374) 评论(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 阅读(462) 评论(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 阅读(530) 评论(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 阅读(433) 评论(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 阅读(970) 评论(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 阅读(486) 评论(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 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-08 22:49 ParamousGIS 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-08 22:45 ParamousGIS 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 1.PM管理要点2.PM管理要点--团队建设3.PM管理要点--工作安排4.PM管理要点--人员培养 阅读全文
posted @ 2018-04-08 22:27 ParamousGIS 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1.项目运营过程2.总的项目开发过程3.项目过程要求4.开发过程5.项目初期问题6.开发人员的每迭代开发流程 阅读全文
posted @ 2018-04-08 22:21 ParamousGIS 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-08 22:13 ParamousGIS 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-08 22:12 ParamousGIS 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 1.需求管理过程2.风险管理3.质量管理过程4.团队与人员建设 阅读全文
posted @ 2018-04-08 22:05 ParamousGIS 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 1. 质量指标2. 质量策划--PCB3.各项项目质量措施4.保证质量活动5.开发过程--质量活动6. QCCQCC: 现状、目标、不断评审、根因、制定对策、达成效果 阅读全文
posted @ 2018-04-08 21:21 ParamousGIS 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-08 21:05 ParamousGIS 阅读(344) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2018-04-08 20:56 ParamousGIS 阅读(558) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页