am335x uboot guide http://software-dl.ti.com/processor-sdk-linux/esd/docs/latest/linux/Foundational_Components_U-Boot.html#u-boot-user-s-guide am335x ...
分类:
其他好文 时间:
2020-05-29 17:52:56
阅读次数:
63
在pom中,引用一个appium的包之后,整个工程无法启动,报错如下 org.springframework.core.annotation.AnnotationConfigurationException: Attribute 'proxyBeanMethods' in annotation [o ...
分类:
其他好文 时间:
2020-05-29 17:50:45
阅读次数:
77
1.<context:annotation-config/> 》可能大家没见过这个标签,但是它提供的注解的使用你一定用过,比如@Autowired,@Resource,@PostConstruct等,至于你为什么没用到这个标签,还能正常使用且由效果呢,请继续往下看 1..如果你想使用@Autowir ...
分类:
Web程序 时间:
2020-05-29 17:42:04
阅读次数:
68
未添加 EventBus的混淆,所以在Debug版本中不报错在混淆文件“proguard-rules.pro”中添加: 1 ### eventbus 2 -keepattributes *Annotation* 3 -keepclassmembers class ** { 4 @org.greenr ...
分类:
其他好文 时间:
2020-05-29 12:13:10
阅读次数:
211
package com.weixiu.jingwei.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping ...
分类:
其他好文 时间:
2020-05-29 09:43:19
阅读次数:
64
模板引擎是 velocity(默认引擎) 自己可根据需要稍作修改,如果要大改则需要去看模板引擎的语法了。 package ${package.Controller}; import org.springframework.web.bind.annotation.RequestMapping; #if ...
分类:
其他好文 时间:
2020-05-28 11:32:16
阅读次数:
340
package com.lzl.pojo; import java.io.Serializable;import java.util.Date; import org.springframework.format.annotation.DateTimeFormat; public class Min ...
分类:
其他好文 时间:
2020-05-27 11:57:28
阅读次数:
48
原文地址:https://www.jianshu.com/p/13980d3ee7fd 先看CommandLineRunner接口的API: import org.springframework.core.annotation.Order; public interface CommandLineR ...
分类:
编程语言 时间:
2020-05-26 18:07:37
阅读次数:
77
p1-p9 1: 注解 1.1 注解的概念 注解:能给人看,也能给机器看 ,机器会用反射机制进行访问。 如@Override都是注解,注解具有检查和约束的作用.如把S小写,override就报错了。 1.2 内置注解 package annotation; import java.util.Arra ...
分类:
其他好文 时间:
2020-05-24 00:50:18
阅读次数:
59
1.JML基础梳理 1.1注释结构 JML采用javadoc注释的方式来表示规格,且每行以@开头。通过使用//@annotation来进行行注释,使用/*@annotaion@*/来进行块注释。 1.2JML表达式 1.2.1原子表达式 \result表达式,在方法规格中使用,通过\result来指 ...
分类:
其他好文 时间:
2020-05-23 20:40:22
阅读次数:
58