2019即将过去<——>2020年即将到来技术方面 后端 熟练使用 SpringBoot/Spring Cloud ——> 达成度70% 运用Redis数据库目标缓存任务 ——> 达成度 100% 运用ActiveMQ/RabbitMQ消息队列处理消息 ...
springboot RestFul接口跨域解决方法
将spring boot以restful接口的方式对外提供服务的时候,如果此时架构是前后端分离的,那么就会涉及到跨域的问题。 1.局部添加注解方式1.1在controller层添加@CrossOrigin 1.2在controller层的方法上添加注解@CrossOrigin(allowCrede ...
Java笔记之JAVA静态类切换以及获取配置文件属性方法
1.使用@PostConstruct注解获取Service实现类并设置静态Service接收从而调用其功能或静态方法 @Autowired private IsalarmService isalarmService;private static IsalarmService isalarmSe ...
Java笔记之javascript常用转换函数
1. Jquery 字符串对应字符全部替换规则 function replaceChar(s) { var val = s.value; var reg = new RegExp("-","g");//g,表示全部替换。 var endstr ...
Java笔记之java8时间格式转换以及计算时间差
1.将LocalDateTime转为自定义的时间格式的字符串 1.public static String getDateTimeAsString(LocalDateTime localDateTime, String format) { DateTimeFormatter form ...
Java笔记之取整函数总结
java的四种取整方法1.public static double ceil(double a)//向上取整 测试用例: System.out.println(Math.ceil(1.01));System.out.println(Math.ceil(-1.01));System.out.prin ...
数据库之MySQL caching_sha2_password 和 mysql_native_password
1.问题重现Client does not support authentication protocol requested by server; consider upgrading MySQL client 2.说明为了提供更安全的密码加密,MySQL8.0的首选默认认证插件是caching_ ...
数据库之'hibernate.dialect' not set错误
数据库问题重现Caused by: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when ‘hibernate.dialect’ not set 解决方式Hibernate SQL方 ...
数据库之Public Key Retrieval is not allowed错误
数据库问题重现com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Public Key Retrieval is not allowed 解决方式1.mysql5及之前的版本使用的是旧版驱动”com.mysql. ...
Windows10 安装MySQL8.0 Failed 解决办法
MySQL下载路径 图示如下:1.MySQL下载路径 2. 出现status failed的解决办法 升级一个插件,即32位 visual C++ 2013 and visual C++ redistributable package,就是缺少这个才会出现failed,其实在安装的过程中跳出过这 ...