移动开发类,后台界面响应式布局


-
html5、css3响应式布局代码编写,兼容移动手机端,这PC端
AspNet 做手机上用的H5页面~~~~~~_course
2017-01-09我想问问,做H5页面,在AspNet中是创建的纯粹的Html页面吗? 能不能创建WebForm页面呢??想通过后台的Load事件初始化数据......
41.67MB
Axure 8 Web前端+移动前端+后台+元件库+交互原型+系统框架.zip
2019-07-26Axure 8 Web前端+移动前端+后台+元件库+交互原型+系统框架 。利用Axure V8 下载,直接使用。主要用于产品经理在构建清晰化需求的百宝箱。拥有一整套元件是互联网产品经理必备绝佳工具。
移动端app后台框架,springmvc+spring+mybatis占用服务器内存太大是什么原因_course
2016-11-22<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd" default-lazy-init="true"> <!-- Annotation Config --> <context:annotation-config/> <!-- <mvc:annotation-driven/> --> <!-- 扫描Service --> <context:component-scan base-package="smart.service" /> <context:component-scan base-package="scott.service.*" /> <!-- jdbcTemplate --> <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"> <property name="dataSource" ref="dataSource" /> </bean> <!-- spring Task --> <!-- <task:scheduled-tasks> <task:scheduled ref="taskJob" method="" cron=""/> </task:scheduled-tasks> <context:component-scan base-package=""></context:component-scan> --> <!-- spring Task Annotation --> <context:component-scan base-package="smart.smartutil.*"></context:component-scan> <task:annotation-driven scheduler="myScheduler"/> <task:scheduler id="myScheduler" pool-size="5"/> <!-- ***************配置数据源************** --> <!-- <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="classpath:jeecg/template/jeecg_database.properties"></property> </bean> --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name = "driverClassName" value = "com.microsoft.sqlserver.jdbc.SQLServerDriver" /> <property name="url" value=""></property> <property name="username"><value> </value></property> <property name="password"><value></value></property> <!-- 初始化连接大小 --> <!-- 连接池最大使用连接数量 --> <property name="maxActive" value="10" /> <!-- 连接池最大空闲 --> <property name="maxIdle" value="10" /> <!-- 连接池最小空闲 --> <property name="minIdle" value="0" /> <!-- 获取连接最大等待时间 --> <property name="maxWait" value="90000" /> <!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 --> <property name="timeBetweenEvictionRunsMillis" value="60000" /> <!-- 配置一个连接在池中最小生存的时间,单位是毫秒 --> <property name="minEvictableIdleTimeMillis" value="25200000" /> </bean> <!-- ***************事务配置************** --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean> <aop:config> <aop:advisor pointcut="execution(* com.jeecg.service.*.*(..))" advice-ref="txAdvice" /> <aop:advisor pointcut="execution(* smart.service.*.*(..))" advice-ref="txAdvice" /> <aop:advisor pointcut="execution(* scott.service.*.*(..))" advice-ref="txAdvice" /> <!-- <aop:aspect id="LogAspect" ref="logBean"> <aop:pointcut id="smartService" expression="execution(* smart.service.*.*(..))" /> <aop:pointcut id="baseService" expression="execution(* com.base.service.*.*(..))" /> <aop:pointcut id="jeecgService" expression="execution(* com.jeecg.service.*.*(..))" /> --> <!-- <aop:before pointcut-ref="smartService" method="doBefore"/> --> <!-- <aop:after pointcut-ref="smartService" method="doAfter"/> --> <!-- <aop:around pointcut-ref="smartService" method="doAround"/> <aop:around pointcut-ref="baseService" method="doAround"/> <aop:around pointcut-ref="jeecgService" method="doAround"/> --> <!-- <aop:after-throwing pointcut-ref="smartService" method="doThrowing" throwing="ex"/> --> <!-- </aop:aspect> --> </aop:config> <bean id="logBean" class="com.base.util.LogAspect" /> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="get*" read-only="true" /> <tx:method name="query*" read-only="true" /> <tx:method name="find*" read-only="true" /> <tx:method name="load*" read-only="true" /> <tx:method name="select*" read-only="true" /> <tx:method name="*" propagation="REQUIRED" rollback-for="Exception" /> </tx:attributes> </tx:advice> <!-- 扫描 MyBatis Sql --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <property name="mapperLocations"> <list> <!-- <value>classpath:com/jeecg/mapper/*Mapper.xml</value> <value>classpath:scott/mapper/*/*Mapper.xml</value> --> <value>classpath:smart/mapper/*Mapper.xml</value> </list> </property> <property name="configLocation" value="classpath:mybatis-config.xml" /> </bean> <!-- 扫描mapper.java --> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer" autowire="byName"> <property name="basePackage" value="com.jeecg.dao,scott.dao.*,smart.dao" /> <property name="sqlSessionFactory" ref="sqlSessionFactory"/> </bean> <!-- Spring 工具类 --> <bean id="springContextUtil" class="com.base.util.SpringContextUtil" /> </beans>
Android(移动端)+Java(Spring 后台服务器)框架的选择?_course
2018-11-06移动端采用Android(类似PC端的网页) ,服务器采用的是JAVA来处理业务并且连接数据库。 Android端开发要用什么框架?由于一直弄Java,对于Android刚接触。 需要登入后保存 用户
13.76MB
非常华丽的移动端后台开发模板JavaScript移动端后台开发模板JavaScript
2018-07-05非常华丽的移动端后台开发模板JavaScript
你用过的几款后台的UI框架推荐_course
2016-08-20收集了几款后台的UI框架,请用过这几种UI框架的朋友们投一下票,说说哪个框架好用,从功能和界面样式上说下 1、EasyUI 2、DWZ 3、Ext 4、BUI 5、Ace Admin 6、其它,大家
-
下载
志汇企业官网小程序(前端后端)
志汇企业官网小程序(前端后端)
-
博客
clion:使用clion+cmake+vcpkg的开发现代的c++跨平台程序(待补充)
clion:使用clion+cmake+vcpkg的开发现代的c++跨平台程序(待补充)
-
学院
Selenium3分布式与虚拟化
Selenium3分布式与虚拟化
-
学院
商业的本质——杰克·韦尔奇著
商业的本质——杰克·韦尔奇著
-
下载
交通灯控制器.pdsprj
交通灯控制器.pdsprj
-
博客
LeetCode-206-反转链表
LeetCode-206-反转链表
-
下载
房产中介小程序(前段后端)
房产中介小程序(前段后端)
-
学院
转行做IT-第8章 类与对象、封装、构造方法
转行做IT-第8章 类与对象、封装、构造方法
-
下载
淘宝客导购小程序(前端后端)
淘宝客导购小程序(前端后端)
-
下载
飞悦旅游小程序(前端后端)
飞悦旅游小程序(前端后端)
-
下载
志汇酒店营销版(前端后端)
志汇酒店营销版(前端后端)
-
学院
【数据分析-随到随学】Python语法强化与数据处理
【数据分析-随到随学】Python语法强化与数据处理
-
下载
柚子门店微商城小程序(前端后端)
柚子门店微商城小程序(前端后端)
-
下载
宝元系统数控系统资料,操作说明书,连接说明书
宝元系统数控系统资料,操作说明书,连接说明书
-
学院
WPF上位机数据采集与监控系统零基础实战
WPF上位机数据采集与监控系统零基础实战
-
学院
UnitySocket异步聊天室
UnitySocket异步聊天室
-
下载
洗衣店小程序(前端后端)
洗衣店小程序(前端后端)
-
学院
30个生涯锦囊,带你跳出迷茫,找到适合你的职业方向
30个生涯锦囊,带你跳出迷茫,找到适合你的职业方向
-
下载
单片机习题作业.zip
单片机习题作业.zip
-
学院
Redis数据库入门与使用
Redis数据库入门与使用
-
下载
电动车充电器电源原理图与解析.docx
电动车充电器电源原理图与解析.docx
-
博客
Java学习DAY6~数组练习~2020.12.24
Java学习DAY6~数组练习~2020.12.24
-
下载
社区社群团购接龙公众号+小程序(前端后端)
社区社群团购接龙公众号+小程序(前端后端)
-
博客
Python学习笔记之生成器
Python学习笔记之生成器
-
学院
阿里云云计算ACP考试必备教程
阿里云云计算ACP考试必备教程
-
学院
计算机网络基础
计算机网络基础
-
下载
深蓝装修小程序(前端后端)
深蓝装修小程序(前端后端)
-
博客
WSL gcc -m32 readdir 出错: Value too large for defined data type
WSL gcc -m32 readdir 出错: Value too large for defined data type
-
博客
详解k8s零停机滚动发布微服务 - kubernetes
详解k8s零停机滚动发布微服务 - kubernetes
-
学院
仿真钢琴-javascript实战
仿真钢琴-javascript实战