首先我已经配置了跨域 @Configuration public class CrosConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**...
java
为什么java的除法/会自动取整、不保留小数呢?
今天遇到个问题 求0-10的平均值 public static void main(String args[]) { int m=0; for(int i=0;i
@ApiModelProperty的用法
@ApiModelProperty()用于方法,字段; 表示对model属性的说明或者数据操作更改。 @ApiOperation(value = “接口说明”, httpMethod = “接口请求方式”, response = “接口返回参数类型”, notes = “接口发布说明”。...
MybatisPlus 通用CRUD操作
1、插入操作 1.1、方法定义 /** * 插⼊⼀条记录 * * @param entity 实体对象. */ int insert(T entity); 1.2、测试用例 /* 测试添加 */ @Test public void testInser...
SpringBoot释放静态资源
1、设置资源映射路径,spring默认设置为/** spring.mvc.static-path-pattern=/content/** 设置这个值以后我们如果想要访问静态资源时,必须要在访问路径的前面加上我们设置的映射资源路径。 2、设置资源...
Java对象的复制方式
Java对象的复制方式 场景 在实际编程中需要两个相互独立的对象A,B,对象B的初始数据和A一致。改变对象B不会影响对象A。 错误用法 User user1 = new User(); user1.setAge(18); User user2 = new User();...
Java基础篇 Map循环的方式
(一)循环例子 Map map = new HashMap(); map.put("pen","thank you for attention"); map.put("lao","thank you for attention"); map.put("xi","thank you for attention"); ...
BigDecimal使用总结
对于超过16位的大型数字,需要用到Java在java.math包中提供的API类BigDecimal,而且也不是传统的+-*/,而是调用对应的方法。 1.创建对象 使用new的方式创建BigDecimal对象 BigDecimal a = new BigDecimal(...
BigInteger方法大全
使用BigInteger类进行操作。这些大数都会以字符串的形式传入。 基础常用方法 BigInteger abs() //返回大整数的绝对值 BigInteger add(BigInteger val) //返回两个大整数的和 BigInteger and(BigIntege...
Java各个类型与byte[]的转换
int 转 byte[] int temp = v; byte[] bt = new byte[4]; for (int i = 0; i < bt.length; i++) { // 将最低位保存在最低位 例如90 输出[5A][00][00][00] bt[i] = new Integer(temp & 0xff)...