码迷,mamicode.com
首页 >  
搜索关键字:prope    ( 2013个结果
maven命令clean package -D maven.test.skip=true -P product释义
maven 命令:clean package -D maven.test.skip=true -P product 1.命令很简单是:清class文件,打包构建,跳过测试,注意最后一个 -P product,-P maven 会激活项目下的pom.xml配置的<profiles>标签下id为prod ...
分类:其他好文   时间:2020-09-18 01:56:31    阅读次数:35
UISB UISlider ProgressView
viewcontroller.h @interface ViewController : UIViewController { //进度条对象 //一般用来表示下载和视频播放的进度 UIProgressView* _progressView; //滑动条的定义 //一般用来进行调整音乐音量的 UIS ...
分类:其他好文   时间:2020-09-18 00:21:35    阅读次数:40
c#用反射动态获取类型
Type tt = Assembly.Load("Model").GetType(tablename); tt.GetType(); //object ff = Activator.CreateInstance(tt, null); //PropertyInfo[] props = tt.GetPr ...
分类:Windows程序   时间:2020-09-17 22:30:28    阅读次数:41
Mybatis_1_搭建过程
1.添加依赖 <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.0</version> </dependency> <dependency> <groupId>ognl< ...
分类:其他好文   时间:2020-09-17 22:20:19    阅读次数:26
【备忘】Horizon 7 console无法使用FQDN访问
新安装的horizon7,只能使用localhost/admin登陆,无法使用fqdn登陆,查询KB解决方法如下:要解决此问题,请执行以下选项之一:使用localhost或者连接服务器配置中“安全加密链路URL”字段中的URL。使用以下步骤关闭来源检查:在C:\ProgramFiles\VMware\VMwareView\Server\sslgateway\conf中,为每个连接服务器创建一个名为
分类:其他好文   时间:2020-09-17 22:06:45    阅读次数:39
【记录】Mybatis-plus中Page插件 快速进行分页操作
使用mybatis-plus 封装好的Page插件,可以很方便的帮助我们进行查询分页,不用再写过多冗余代码,强烈推荐 以下是本人使用的例子: pom依赖 <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-gen ...
分类:其他好文   时间:2020-09-17 19:50:32    阅读次数:34
索引操作
1 查看索引的mapping结构 GET http://ip:port/index/_mapping 2 索引的mapping结构中添加字段 a)增加字段 sourceType,类型为keyword。keyword与text的区别为:keyword在查找时不分词,完全匹配地查找。 PUT http: ...
分类:其他好文   时间:2020-09-17 18:50:54    阅读次数:23
wpf listbox分组显示
###1.Xaml部分 <Grid> <ListBox Name="lbMain" ItemsSource="{Binding CollectionModelFile}"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel Height="30" O ...
分类:Windows程序   时间:2020-09-16 12:45:20    阅读次数:66
C# 读取Excel并解析
public static DataTable GetExcelToDataTableBySheet(string FileFullPath, string SheetName="") { //SheetName = "Sheet1$"; //HDR=Yes, 表示第一行为列名第二行才是数据 / H ...
分类:Windows程序   时间:2020-09-14 19:15:08    阅读次数:54
wpf的mvvm
INotifyPropertyChanged,用来绑定字段 /// <summary> /// mvvm的基类 /// </summary> public class NotificationOjbect : INotifyPropertyChanged { public event Propert ...
分类:Windows程序   时间:2020-09-14 18:49:43    阅读次数:55
2013条   上一页 1 ... 11 12 13 14 15 ... 202 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!