上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
git如何新建分支 1) 切换到基础分支,如主干 git checkout master 2)创建并切换到新分支 git checkout -b panda git branch可以看到已经在panda分支上 3)更新分支代码并提交 git add * git commit -m "init pan Read More
posted @ 2020-08-19 15:30 2eggs Views(484) Comments(0) Diggs(0) Edit
1 <?xml version='1.0' encoding='UTF-8'?> 2 <configuration> 3 <springProperty name="logFile" source="log.file"/> 4 <springProperty name="DataFileNettyU Read More
posted @ 2020-08-18 12:25 2eggs Views(296) Comments(0) Diggs(0) Edit
在从版本控制库中拉代码: https://gitee.com/zhang.w/boot-backend 1 此项目源码采用前后端分离方式,spring boot开发后端,使用shiro进行权限控制,layui、bootstrap、jquery、html为前端,基于json进行交互,接口完全采用Res Read More
posted @ 2020-08-15 09:42 2eggs Views(195) Comments(0) Diggs(0) Edit
三种注释方式 行注释、块注释、方法或类说明注释。 一、快捷键:Ctrl + / 使用Ctrl+ /, 添加行注释,再次使用,去掉行注释 二、演示代码 if (hallSites != null && hallSites.size() > 0) { //行注释 //最大行号 int maxRow = Read More
posted @ 2020-08-15 08:27 2eggs Views(1415) Comments(0) Diggs(0) Edit
https://blog.csdn.net/bornonew/article/details/68941510 在VS2008中创建一个web service项目。 创建两个WebMethod。 1.启动Tomcat方法 1 /// <summary> 2 /// 启动权限系统 3 /// </su Read More
posted @ 2020-08-14 08:34 2eggs Views(361) Comments(0) Diggs(0) Edit
Corporation 1.8.0_211 C:\Program Files\Java\jdk1.8.0_211\jre ERROR | Failed to start Apache ActiveMQ (localhost, ID:SUJIE10-55704-1597277598596-0:1)ja Read More
posted @ 2020-08-13 08:25 2eggs Views(334) Comments(0) Diggs(0) Edit
netstat -aon|findstr "8161" TCP 127.0.0.1:64065 127.0.0.1:8161 SYN_SENT 23076 tasklist|findstr "23076" taskkill /f /t /im Tencentdl.exe C:\Users\sujie Read More
posted @ 2020-08-12 13:31 2eggs Views(188) Comments(2) Diggs(0) Edit
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance Read More
posted @ 2020-08-07 16:36 2eggs Views(207) Comments(1) Diggs(0) Edit
关于SSH与SSM的组成及其区别 https://www.cnblogs.com/mYunYu/p/11401037.html 前言 当下SpringBoot盛行,咱再聊聊SpringBoot盛行之前的框架组合,当做复习巩固哈。 在聊之前,得先说说MVC,MVC全名是Model View Contr Read More
posted @ 2020-08-07 08:45 2eggs Views(234) Comments(1) Diggs(0) Edit
public class Utils { //byte[]数组转16字符串 public static string ByteToHexStr(byte[] by) { StringBuilder ret = new StringBuilder(); foreach (byte b in by) { Read More
posted @ 2020-08-05 16:04 2eggs Views(127) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页