{"msg":"Could not marshal [ResultVo [code=100, result=null, message=ok, exception=null, data=null]]: null; nested exception is javax.xml.bind.MarshalException\n - with linked exception:\n[com.sun.istack.SAXException2: unable to marshal type \"com.domain.ResultVo\" as an element because it is missing an @XmlRootElement annotation]","errorcode":2}
分类:
其他好文 时间:
2020-07-20 11:05:43
阅读次数:
87
从SpringBoot启动类开始看起 @SpringBootApplication public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplicatio ...
分类:
编程语言 时间:
2020-07-19 23:41:01
阅读次数:
82
需要序列化的类需实现接口: public class ResponseModel implements Serializable { 序列化和反序列化代码例子: import com.fasterxml.jackson.annotation.JsonInclude; import com.faste ...
分类:
Web程序 时间:
2020-07-19 16:07:17
阅读次数:
101
官网:https://docs.spring.io/spring/docs/5.2.7.RELEASE/spring-framework-reference/core.html#beans-annotation-config 1、导入约束 2、配置注解支持 <?xml version="1.0" e ...
分类:
编程语言 时间:
2020-07-19 00:44:39
阅读次数:
89
前后端项目分离,跨域请求时,后端的两种配置方式: 1.配置类: package com.helq3.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annot ...
分类:
编程语言 时间:
2020-07-18 21:52:43
阅读次数:
86
反射操作注解获得注解信息 练习:ORM 代码练习 import java.lang.annotation.*; import java.lang.reflect.Field; //练习反射操作注解 public class Test12 { public static void main(Strin ...
分类:
其他好文 时间:
2020-07-18 00:40:31
阅读次数:
78
SOC-系统级芯片-System On Chip-片上系统 两部分构成 a dual-core ARM® Cortex®-A9 processor 双核ARM处理器 (称为PS - Processing System) FPGA fabric FPGA架构 (成为PL - Programmable ...
分类:
其他好文 时间:
2020-07-14 16:23:25
阅读次数:
97
*** errRun: ['which', 'controller'] /usr/local/bin/controller 0*** errRun: ['grep', '-c', 'processor', '/proc/cpuinfo'] 64 0*** Setting resource limit ...
分类:
其他好文 时间:
2020-07-13 11:28:41
阅读次数:
74
@Component @Aspect public class MyAspect { // /** // * 切点表达式: // * ..两个点表明多个,*代表一个 // * 表达式代表切入com..service包下的所有类的所有方法,方法参数不限,返回类型不限。 // * 其中访问修饰符可以不写 ...
分类:
Web程序 时间:
2020-07-12 22:09:07
阅读次数:
89
Busy spin 是一种在不释放 CPU 的基础上等待事件的技术。它经常用于避免丢 失 CPU 缓存中的数据(如果线程先暂停,之后在其他 CPU 上运行就会丢失)。 所以,如果你的工作要求低延迟,并且你的线程目前没有任何顺序,这样你就可 以通过循环检测队列中的新消息来代替调用 sleep() 或 ...
分类:
其他好文 时间:
2020-07-12 15:05:26
阅读次数:
192