- 博客(31)
- 收藏
- 关注
原创 vue一期
通俗点来说,渐进式就是逐渐进步,想用什么就用什么,不必一次性全都使用,一步一步来,比如我们现在要建造一个小汽车,一开始先建一个基本的车架子,能跑就行,后来觉得这架子太丑,冬天开着太冷,我们想要在改进一下他的外形,再后来我们又觉得这个车子跑得太慢,还老是堵车,我想再给他升级,升级成能在天上飞也能在地上跑的,功能一步一步升级.查看 App.vue 的内容我们看到,这个页面的内容由一个 logo 和一个待放置内容的 router-view,router-view 的内容将由 router 配置决定。
2023-10-20 10:40:44 45
原创 通过javaparser定位是哪个方法,通过asm查看调用关系
<dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>9.2</version> </dependency><dependency> <g
2023-09-06 11:18:32 424
原创 vue api.js写法
import axios from 'axios'export function getfangshi(type) { return axios({ url: "/api", method: "get", params: { type: type } } )}export function postfangshi(senderCompany
2022-05-09 21:53:27 363
原创 junit代码运行和获取数据
1、继承extends TestCase2、public static void suite() { TestSuite testSuite = new TestSuite(); testSuite.addTestSuite(TestCycleA.class); testSuite.addTestSuite(TestCycleI.class); TestResult run = TestRunner.run(testSuite);
2021-06-09 16:01:16 191
原创 下载mysql
1、https://www.mysql.com/2、3、4、5、6、管理员身份打开命令行7、mysql的bin目录下——安装mysql的服务:mysqld --install8、mysqld --initialize --console 初始化9、开启mysql的服务——> (net start mysql)10、登录 mysql -u root -p 密码是初始化密码11、 alter user ‘root’@‘localhost’ identified by ‘1234
2021-06-06 22:00:46 66
原创 mvn 不能把包放到本地仓库
本来期望:\IdeaProjects\demo1\RESTfulAPI\target\RESTfulAPI-0.0.1-SNAPSHOT.jar to C:\Users.m2\repository\com\example\RESTfulAPI\0.0.1-SNAPSHOT\RESTfulAPI-0.0.1-SNAPSHOT.jar实际上:放到了项目的所在目录解决:.m2\template-mars2\repository...
2021-06-03 07:37:51 200
原创 获取方法体代码
<dependency> <groupId>com.thoughtworks.qdox</groupId> <artifactId>qdox</artifactId> <version>2.0-M10</version> </dependency> JavaProjectBuilder builder = .
2021-06-01 19:49:51 127
原创 maven 如何实现分环境
maven 如何实现分环境spring: profiles: active: '@active-profile@'#spring:# profiles:# active: pro#test:# msg: sds#profiles:# active: @profiles.active@---spring: profiles: devconfig: path: /dev/jdbc.properties---spring: profile
2021-05-27 10:40:06 258 1
原创 下载文件
public StreamingResponseBody downloadTemplate(HttpServletResponse response) throws IOException {response.setContentType(“application/octet-stream”);response.setHeader(“Content-Disposition”, “attachment; filename=” + templateFile.getFilename());ServletOu
2021-03-31 14:52:01 81
原创 解决时间戳带点问题
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")private Timestamp queryTime;
2021-02-26 16:35:23 468 1
原创 spring下载文件xml
@Value("classpath:template.xlsx") private org.springframework.core.io.Resource templateFile;public StreamingResponseBody downloadTemplate(HttpServletResponse response) throws IOException { response.setContentType("application/octet-stream");
2021-02-08 11:42:23 219
原创 计算各种费率
BigDecimal decimal1 = new BigDecimal((coverSize) * 100); double ratio = decimal1.divide(new BigDecimal(UnCoverSize + coverSize), 2, BigDecimal.ROUND_HALF_UP).doubleValue();
2021-02-08 11:30:52 269
原创 Unable to launch WebDriverAgent because of xcodebuild failure: “iproxy exited with code ‘234‘“
真机跑case报错Unable to launch WebDriverAgent because of xcodebuild failure: “iproxy exited with code ‘234’”描述真机跑case报错Unable to launch WebDriverAgent because of xcodebuild failure: “iproxy exited with code ‘234’”,现象case跑起来后WDA被卸载,然后不能重新装上原因iproxy的版本太高(目前云测
2021-02-07 20:52:02 1262
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人