摘要: 报错如下 org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'orderController': Unsatisfied dependency express 阅读全文
posted @ 2021-01-28 09:58 wangchw 阅读(4816) 评论(0) 推荐(0) 编辑
摘要: &lt; < 小于号 &gt; > 大于号 &amp; & 和 &apos; ' 单引号 &quot; " 双引号 阅读全文
posted @ 2021-01-26 16:12 wangchw 阅读(1288) 评论(0) 推荐(0) 编辑
摘要: 在spring mvc当中配置文件: xmlns:mvc="http://www.springframework.org/schema/mvc" http://www.springframework.org/schema/mvc http://www.springframework.org/sche 阅读全文
posted @ 2021-01-19 14:04 wangchw 阅读(123) 评论(0) 推荐(0) 编辑
摘要: import java.util.Calendar; import java.util.TimeZone; /** * TODO *获取时区 * @author wangchw * version * @date 2021/1/18 14:25 */ public class Demo { publ 阅读全文
posted @ 2021-01-18 14:38 wangchw 阅读(4493) 评论(1) 推荐(1) 编辑
摘要: idea版本号:idea2020.3.1 第一步:在idea中按下AlT+9,右击Remote 再点击Manage Remotes 出现如下图: 地址你可以随意更改,然后上传,前提是你的gitee仓库里有这个地址就可以同步,否则会失败。 阅读全文
posted @ 2021-01-18 14:03 wangchw 阅读(1359) 评论(0) 推荐(0) 编辑
摘要: 当我们将 .gitignore 文件配置好后,却往往不能失效。这是因为 .gitignore 只能忽略那些没有被追踪(track)的文件,因为 git 存在本地缓存,如果文件已经纳入了版本管理,那么修改 .gitignore 是不能失效的。那么解决方案就是要将 git 的本地缓存删除,然后重新提交。 阅读全文
posted @ 2021-01-18 13:51 wangchw 阅读(858) 评论(0) 推荐(0) 编辑
摘要: 检查注解有没有漏写,或者注解写错了也都会出现这种情况。 阅读全文
posted @ 2021-01-15 21:51 wangchw 阅读(180) 评论(0) 推荐(0) 编辑
摘要: ublic class Demo03ArrayList { public static void main(String[] args) { ArrayList<String> list=new ArrayList<String>(); list.add("张三"); list.add("李丽"); 阅读全文
posted @ 2021-01-14 21:16 wangchw 阅读(487) 评论(0) 推荐(0) 编辑
摘要: public class Demo02ScannerSum { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("请输入第一个数字:"); int a = 阅读全文
posted @ 2021-01-14 09:59 wangchw 阅读(727) 评论(0) 推荐(0) 编辑
摘要: public class Demo02ScannerSum { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("请输入第一个数字:"); int a = 阅读全文
posted @ 2021-01-13 21:01 wangchw 阅读(1607) 评论(0) 推荐(0) 编辑