git的使用和基本命令
git的使用和基本命令创建一个新仓库,在本地控制台上传这些命令123456git initgit add .git commit -m "注释"git branch -M main git remote add origin (https://github.com/zwxl/Javaswing-LibrarySystem.git)远程仓库链接git push -u origin main
在一个已有的仓库上,上传命令123git remote add origin (https://github.com/zwxl/Javaswing-LibrarySystem.git)远程仓库链接git branch -M maingit push -u origin main
新建分支12345git branch namegit checkout namegit add .git commit -m "注释"git push -u origin name
上传错误
1error: remote origin already exists.
解决方法:
...
spring的学习和遇到的bug(一)
ssm框架整合中出现的问题在编译后target没有classes目录,导致java目录下的文件都没有被加载,导致你可以编译通过,但是运行过程中总是会报错。
原因:在导入工程到idea的时候,上一个目录也有一个.idea导致配置文件加载错误。
例如:
1Could not resolve type alias 'User'. Cause: java.lang.ClassNotFoundException:
解决方案:
1. 删除.idea配置文件,然后在退出idea,重新进入加载,就可以。
1. 重新建一个新工程。
参考博客链接:(174条消息) IDEA Web项目out/classes目录没有编译的class类文件 - IDEA环境下创建Maven WebApp_idea打war包没有class文件_WalkingWithTheWind~的博客-CSDN博客
+++
前端的学习
前端学习JQuery的后代选择器1234567891011121314151617181920212223242526272829303132333435363738394041//后代(包括儿子,孙子,重孙子) // $(function () { // $("#father p").css("color","blue") // }) //子代(儿子) // $(function(){ // $("#child>p").css("color","blue") // }) //同代节点(能够选择指定元素后面的所有兄弟元素,不包括自身) // $(function(){ // $("#n~p").css("color","blue") // }) ...
图形验证码
java实现图片验证码一、导入依赖12345<dependency> <groupId>com.github.axet</groupId> <artifactId>kaptcha</artifactId> <version>0.0.9</version></dependency>
二、配置类创建DefaultKaptcha1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950package com.springboot.springbootvue.config;import com.google.code.kaptcha.impl.DefaultKaptcha;import org.springframework.context.annotation.Bean;import org.springframework.context.annotatio ...
java send email
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869@Test public void qqmailtest() { try { testMail("破竹","你好","761229038@qq.com"); } catch (Exception e) { e.printStackTrace(); } } public void testMail (String topic,String msg,String sendto) throws Exception { // 给用户发送邮件的邮箱 final String f ...
First Blog
一、 MP的学习1、导入依赖12345<dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.5.1</version></dependency>
2、MP生成日志1234567mybatis-plus: global-config: db-config: id-type: auto //id设置为自增,默认是雪花算法生成的id table-prefix: sys_//数据库表的前缀 configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl//控制台输出
3、MP的分页配置类12345678910@Configurationpublic class MPconfig { ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment