`
只是随手瞎打
  • 浏览: 28033 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论
文章列表
['class' => 'yii\grid\ActionColumn', 'header' => '操作', 'headerOptions' => ['width' => '100px'], 'template' => ' {view} {update} {delete} {add}', 'buttons' => [ 'add' => function ($url, $mod ...
在学习yii2.0框架的时候,想要把自动生成的GridView进行修改,却发现没有一个文档对columns中的配置说明。然后自己在找到了下面这个文件 里面的定义的属性正是我需要的配置 如: $attribute 代表数据列,和模型里的要相对应。 $label GridView显示的列名,如果没有配置的话会直接显示attribute 的值 只不过用了attribute 会有搜索框,不需要的话可以去掉,但是这列会没有值 所以就要用value 来了
因为项目需要,要用JAVA调用C#写的东西,网上百度了一下,貌似不能直接调用,只能通过调用C++的DLL,C++去调用C#的 如此就可以了,如果返回值类型不一样的话记得转换

PHP安装yii框架

    博客分类:
  • PHP
http://www.yiichina.com/doc/guide/2.0/start-installation 按照链接来,前提是php.ini配好, 安装Composer-Setup.exe 然后在生成项目时会让你填写GitHub的token,   

PHP 中::,->,=>

    博客分类:
  • PHP
::  类中 静态方法和静态属性的引用方法 ->  对象成员访问符号 => 数组成员访问符号

maven+ssm 整合

    博客分类:
  • java
spring-mvc.xml <?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:p="http://www.springframework.org/schema/p" xmlns: ...

trait

    博客分类:
  • PHP
在学习PHP时遇到trait,不解,研究了一下 官方文档写的很详细 http://www.php.net/manual/zh/language.oop5.traits.php <?php trait ezcReflectionReturnInfo { function getReturnType() { /*1*/ } function getReturnDescription() { /*2*/ } } class ezcReflectionMethod extends ReflectionMethod { use ezcReflect ...

win10 搭建PHP环境

    博客分类:
  • PHP
http://www.cnblogs.com/hzd2010/p/5681394.html 照着做就行了 测试是否安装成功: 在Apache下htdocs新建helloworld.php <?php echo "helloWorld"; ?> 打开浏览器输入http://localhost/helloworld.php 页面显示helloWorld
http://tiantian911.iteye.com/blog/273164 大体是按照上面链接来做的,需要注意的一点是,如果有包名的话, MyClassLoader mcl = new MyClassLoader("H:/Workspaces/Eclipse/TestClassLoader/bin/com/test/javaclass");  Class cl = mcl.loadClass(decryptedData, "com.test.javaclass.HelloWorld"); 这样就可以
public class HelloWorld { public native boolean isEmpty(int size); //public native void test(); static { System.loadLibrary("test"); } public static void main(String[] args) { System.out.println(new HelloWorld().isEmpty(0)); } } cmd运行以下命令生成.h,记得到java文件目录下 javac HelloWorld ...
加密类: package com.test.Utils; import it.sauronsoftware.base64.Base64; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.ObjectInputStream; import java.security.KeyFactory; import java.security.PublicKey; import java.security.interfaces.RSAPublicKey; ...
<!-- 测试监听,listener-class值为监听的路径 --> <listener> <listener-class>com.test.listener.Jurisdictionlistener</listener-class> </listener> 启动就有用啦 package com.test.listener; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; public clas ...
mysql : aos_sys_module_user_nav.sort_no_ is null ,aos_sys_module_user_nav.sort_no_ asc; oracle : select * from aos_sys_module_user_nav ORDER BY  sort_no_;             oracle 默认就是把null 放后面 sqlserver : select * from aos_sys_module_user_nav ORDER BY  case when sort_no_ is         null then 2 else 1 ...
servlet.xml配置: controller代码: @Controller @RequestMapping(value="/test") public class MainContrlller {     @Autowired     private JdbcTemplate jdbcTemplate;     @RequestMapping(value = "/hello", method = RequestMethod.GET)     public String index() {         System.out.println(jd ...
从网上搜索配置成图下, 然后跳转jsp页面失败,经过一番折腾,发现是class用的不对改成org.springframework.web.servlet.view.InternalResourceViewResolver 就可以了. org.springframework.web.servlet.view.velocity.VelocityViewResolver : 是使用 velocity 配置的. http://www.admin10000.com/document/6436.html ,挺详细的
Global site tag (gtag.js) - Google Analytics