上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 26 下一页
摘要: Spring的"零配置"支持 搜索Bean类 Spring提供如下几个Annotation来标注Spring Bean: @Component: 标注一个普通的Spring Bean类 @Controller: 标注一个控制器组件类 @Service: 标注一个业务逻辑组件类 @Repository 阅读全文
posted @ 2024-05-04 21:48 a_true 阅读(12) 评论(0) 推荐(0)
摘要: 继续学习spring。 Spring的核心机制 管理Bean 程序主要是通过Spring容器来访问容器中的Bean,ApplicationContext是Spring容器最常用的接口,该接口有如下两个实现类: ClassPathXmlApplicationContext: 从类加载路径下搜索配置文件 阅读全文
posted @ 2024-05-03 21:50 a_true 阅读(14) 评论(0) 推荐(0)
摘要: 在搞数学建模竞赛,用python完成了数据分析。 1 import os 2 import pandas as pd 3 from sklearn.model_selection import train_test_split 4 from sklearn.linear_model import L 阅读全文
posted @ 2024-05-02 22:52 a_true 阅读(21) 评论(0) 推荐(0)
摘要: 今天:写了查看订单和自动登录功能,完成了测试,基本完成了业务流程,代码量200行。 package com.example.kydy; import android.content.Intent; import android.content.SharedPreferences; import an 阅读全文
posted @ 2024-05-01 21:58 a_true 阅读(10) 评论(0) 推荐(0)
摘要: 今天:写了注册时的合法性校验,写了增加订单功能,包括kd和df,代码量500行。 明天:继续补全细小功能。 package com.example.kydy; import android.content.Intent; import android.os.Bundle; import androi 阅读全文
posted @ 2024-04-30 19:38 a_true 阅读(15) 评论(0) 推荐(0)
摘要: 今天:发现了前后端交互有问题,又改了一天。 明天:如果没有再报错,进一步写细小功能。 阅读全文
posted @ 2024-04-29 21:53 a_true 阅读(10) 评论(0) 推荐(0)
摘要: 今天:美化了现有布局的界面。 明天:继续完善细小功能。 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:or 阅读全文
posted @ 2024-04-28 19:49 a_true 阅读(23) 评论(0) 推荐(0)
摘要: 今天:核对了接口,中间遇到了很多问题,都解决了,改进了技术,改变了写代码的结构,更加简洁 明天:界面不是很好看,明天美化一下界面。 阅读全文
posted @ 2024-04-27 23:10 a_true 阅读(13) 评论(0) 推荐(0)
摘要: 今天:完成了菜单界面,写了四个fragment一个activity 明天:核对接口。 package com.example.kydy.Frag; import android.annotation.SuppressLint; import android.content.Intent; impor 阅读全文
posted @ 2024-04-26 19:38 a_true 阅读(7) 评论(0) 推荐(0)
摘要: 今天:写完了前端逻辑的登录注册,核对了接口 明天:写菜单界面。 两个功能的布局文件: <?xml version="1.0" encoding="utf-8"?> <androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http:// 阅读全文
posted @ 2024-04-25 20:24 a_true 阅读(16) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 26 下一页