摘要:
java的设计模式 一、单例模式 基本概念:保证一个类仅有一个实例,并提供一个访问它的全局访问点。 常见写法: 1. 饿汉式 public class Singleton{ private static Singleton singleton = new Singleton(); private S 阅读全文
摘要:
No 'Access-Control-Allow-Origin' header is present on the requested resource 在controller层 如果用的是@GetMapping,它是一般用于路径的查询功能,当我们具体查询某个值时,可以用@GetMapping ht 阅读全文