保温杯有枸杞
码龄9年
关注
提问 私信
  • 博客:85,582
    85,582
    总访问量
  • 265
    原创
  • 760,792
    排名
  • 25
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:山东省
  • 加入CSDN时间: 2015-11-08
博客简介:

qq_32659773的博客

查看详细资料
个人成就
  • 获得6次点赞
  • 内容获得9次评论
  • 获得72次收藏
创作历程
  • 16篇
    2022年
  • 3篇
    2021年
  • 220篇
    2020年
  • 27篇
    2019年
成就勋章
TA的专栏
  • JWT
  • RabbitMQ
    1篇
  • Vue
    1篇
  • Sql Server
    7篇
  • Oracle
    12篇
  • KETTL
  • hibernate
    29篇
  • 配置问题
  • Struts
    17篇
  • Redis
    1篇
  • Spring MVC
    9篇
  • Nginx
    1篇
  • Linux
    2篇
  • Dubbo
    1篇
  • zookeeper
    1篇
  • ActiveMQ
    1篇
  • spring+mybatis+freemarker
    1篇
  • SpringBoot
    1篇
  • SSM
    8篇
  • Git
    1篇
  • Maven
    1篇
  • SSH
    76篇
  • MySQL
    2篇
  • MyBatis
    11篇
  • Hessian
    2篇
  • MongoDb
  • Shiro
    1篇
  • FineReport
    1篇
  • jQuery EasyUI
    4篇
  • PowerDesigner
    1篇
  • WebService
    12篇
  • Spring
    18篇
  • JavaEE
    4篇
  • Android
    16篇
  • 大数据
    22篇
创作活动更多

如何做好一份技术文档?

无论你是技术大神还是初涉此领域的新手,都欢迎分享你的宝贵经验、独到见解与创新方法,为技术传播之路点亮明灯!

357人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

18 RRO

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.overlay91"> <application android:hasCode="false"></application> <overlay android:targ.
原创
发布博客 2022.05.04 ·
1025 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

17 广播

一、系统广播 ​​​​ 1、动态广播 package com.test; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.net.ConnectivityManager;.
原创
发布博客 2022.04.24 ·
377 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

16 Service

简单练习: 一、创建Started service 1. 继承IntentService package com.test; import android.app.IntentService; import android.content.Intent; import android.widget.Toast; import androidx.annotation.Nullable; public class HelloIntentService extends IntentService...
原创
发布博客 2022.04.24 ·
2289 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

15 ContentProvider

预定义获取联系人 package com.test; import android.app.Activity; import android.content.ContentResolver; import android.content.Intent; import android.content.res.XmlResourceParser; import android.database.Cursor; import android.media.MediaPlayer; import android
原创
发布博客 2022.04.22 ·
1927 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

14 自定义xml

xml/customers.xml <?xml version="1.0" encoding="utf-8"?> <customers xmlns:android="http://schemas.android.com/apk/res/android"> <customer name="小明" tel="110" emall="110@qq.com"/> <customer name="小红" tel="120" emall="120@qq.com"/&
原创
发布博客 2022.04.21 ·
1646 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

12 Intent 来回结果的返回

package com.texxt; import android.app.Activity; import android.app.AlertDialog; import android.app.Notification; import android.app.NotificationChannel; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Di.
原创
发布博客 2022.04.20 ·
141 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

11 多种提示框形式

package com.texxt; import android.app.Activity; import android.app.AlertDialog; import android.app.Notification; import android.app.NotificationChannel; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Di.
原创
发布博客 2022.04.20 ·
601 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

10 通知栏Notification

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.textmethod"> <uses-permission android:name="android.permission.FLASHLIGHT"></uses-permission> &.
原创
发布博客 2022.04.20 ·
136 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

09 单击画廊图片显示

styleable.xml <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="Gallery"> <attr name= "android:galleryItemBackground" /> </declare-styleable> </resources> <?xml version.
原创
发布博客 2022.04.19 ·
408 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

07 画廊视图

<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="Gallery"> <attr name= "android:galleryItemBackground" /> </declare-styleable> </resources> <?xml version="1.0" encodin.
原创
发布博客 2022.04.19 ·
107 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

06 网格视图

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> > .
原创
发布博客 2022.04.19 ·
111 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

05 图片切换器

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"&.
原创
发布博客 2022.04.19 ·
104 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

04 选项卡

<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.c.
原创
发布博客 2022.04.19 ·
592 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

03 单击图片状态改变

<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:drawable="@drawable/img1"/> <item android:state_pressed="false.
原创
发布博客 2022.04.18 ·
136 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

02 java与xml混合控制UI界面

<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.c.
原创
发布博客 2022.04.18 ·
454 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

01 代码中添加布局

import android.app.AlertDialog; import android.app.Fragment; import android.content.DialogInterface; import android.graphics.Color; import android.os.Bundle; import android.util.Log; import android.util.TypedValue; import android.view.Gravity; import and..
原创
发布博客 2022.04.18 ·
156 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Flume将数据输出到HDFS

a2.sources = r2 a2.sinks = k2 a2.channels = c2 a2.sources.r2.type = exec a2.sources.r2.command = tail -F /opt/module/hive/logs/hive.log a2.sources.r2.shell = /bin/bash -c a2.sinks.k2.type = hdfs a2.sinks.k2.hdfs.path = hdfs://hadoop102:8020/fl..
原创
发布博客 2021.08.24 ·
502 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

RabbitMQ相关使用

1、简单生产者与消费者(1对1) 生产者代码 public static void main(String[] args) throws IOException, TimeoutException { ConnectionFactory connectionFactory=new ConnectionFactory(); connectionFactory.setHost("192.168.1.103"); connectionFactory.setUsername("heim
原创
发布博客 2021.06.16 ·
116 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

前端框架Vue(20210122)

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="js/vue.js"></script> </head> <body> <div id="app"> <input type="text" v-m.
原创
发布博客 2021.01.22 ·
142 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

查看sqlserver被锁的表以及如何解锁

select request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tableName from sys.dm_tran_locks where resource_type='OBJECT' 解锁: declare @spid int Set @spid = 66 --锁表进程 declare @sql varchar(1000) set @sql='kill '+cast(@spid as varchar) exec(..
原创
发布博客 2020.11.13 ·
257 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏
加载更多