library

action不能往jsp中传递数据的问题

前提是你 提交于 2019-12-07 10:49:41
struct z中一个action的配置如下: path="/library" parameter="method" name="libraryForm" scope="request" validate="true" type="org.springframework.web.struts.DelegatingActionProxy"> name="listLibrarys" path="/form/listlibrarys.jsp" redirect="true" /> action 中部分源代码: public ActionForward list(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { log.debug("list library "); List list = libraryManagerService.listLibrarys(); if(list == null) log.debug("there is not any library ,because list is null"); else log.debug("there are " + list.size() + " librarys .");

action不能往jsp中传递数据的问题

梦想的初衷 提交于 2019-12-07 10:49:27
struct z中一个action的配置如下: path="/library" parameter="method" name="libraryForm" scope="request" validate="true" type="org.springframework.web.struts.DelegatingActionProxy"> name="listLibrarys" path="/form/listlibrarys.jsp" redirect="true" /> action 中部分源代码: public ActionForward list(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { log.debug("list library "); List list = libraryManagerService.listLibrarys(); if(list == null) log.debug("there is not any library ,because list is null"); else log.debug("there are " + list.size() + " librarys .");

Android一个完整的项目转成SDK提供给第三方嵌入

穿精又带淫゛_ 提交于 2019-12-06 19:22:49
1、项目导出Apk反编译到res/values/目录下找到'public.xml'和'ids.xml'两个文件; 2、项目设置为libray项目; 3、项目"Clean...",如果出现switch语句错误,一般要修改成if-else; [ 选择switch整个语句 -右键-Quick Fix-Convert 'switch' to 'if-else'] 4、拷贝上面提到的 'public.xml'和'ids.xml'两个文件到项目res/values目录下,这一步是定义资源ID,防止在Library项目引用的资源文件找不到; 5、 替换"@+id/"为"@id/"; 6、修改项目中资源命名,可以看到项目gen目录下生成有项目的R文件,这里包含项目中引用到所有的资源,根据生成的R.java文件重命名项目中所有引用到的资源(这里可以添加前缀)。如此为了防止第三方项目引用Library项目时出现重复定义的情况,本步工作量大,建议写查找替换程序。 7、拷贝AndroidManifest.xml文件中的组件和权限到项目中,注意组件要使用全包名。 8、提供Library的入口程序给项目启动。 9、打包调试Library项目,基本不会有什么新问题。 10、修改Library项目:project.properties文件中 android.library=true去除,导出Apk软件包

Android 工程引用其他Library工程时的R.id问题

筅森魡賤 提交于 2019-12-05 00:28:00
A为普通Android工程B为设置了is Library的工程,B中有使用R.id,当A工程引用了B工程时会在A工程的gen目录中生成B的R文件,里面也包含了A的R文件中的内容,但是当B的id定义在layout文件中时需要注意layout的名称,如果A下有个main.xml的layout,B下也有个main.xml的layout,那么A编译时就会将B的main.xml中的所有id忽略,导致混淆报错提示找不到id 来源: oschina 链接: https://my.oschina.net/u/614511/blog/80946

webpack4 打包 library 遇到的坑

不问归期 提交于 2019-12-04 10:34:58
output: { publicPath: '/', path: path.join(__dirname, 'lib'), filename: 'chart.js', library: 'tcharts', libraryTarget: 'umd', umdNamedDefine: true, }, output 中的配置,主要是 libraryTarget 和 umdNamedDefine。 另外一点就是在 babel 的配置中需要添加 "sourceType": "unambiguous" 这个配置。 因为 webpack4 不支持 export default 和 module.exports 混用,而我们通常在项目中使用的是 export default 的方式,而 webpack 打包的 library 是 module.exports 的方式,所以没添加这个配置时,使用 import 来加载 webpack 打包的 library 得到的是 undefined。加上这个后会通过语法进行推测,从而能正常使用。 来源: https://www.cnblogs.com/3body/p/11855191.html

C Graphics Library Error

匿名 (未验证) 提交于 2019-12-03 10:10:24
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have the following code : #include<stdio.h> #include<conio.h> #include<math.h> #include<graphics.h> void main() { int gd=DETECT,gm; int dx,dy,p,end; float x1,x2,y1,y2,x,y; initgraph(&gd,&gm,""); printf("\nEnter the value of x1: "); scanf("%f",&x1); printf("\nEnter the value of y1: "); scanf("%f",&y1); printf("\nEnter the value of x2: "); scanf("%f",&x2); printf("\nEnter the value of y2: "); scanf("%f",&y2); dx=abs(x1-x2); dy=abs(y2-y1); p=2*dy-dx; if(x1>x2) { x=x2; y=y2; end=x1; } else { x=x1; y=y1; end=x2; } putpixel(x,y,10); while(x<end)

Including prebuilt static library in Android build system

匿名 (未验证) 提交于 2019-12-03 08:46:08
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I need to build a shared library based on a prebuilt static library. My makefile src/android/external/mycode/Android.mk: LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) LOCAL_ARM_MODE := arm LOCAL_MODULE := libMyStatic LOCAL_SRC_FILES := libStatic.a include $(PREBUILT_STATIC_LIBRARY) include $(CLEAR_VARS) LOCAL_MODULE_TAGS := eng LOCAL_ARM_MODE := arm LOCAL_PRELINK_MODULE := false LOCAL_MODULE := libMyShared LOCAL_WHOLE_STATIC_LIBRARIES := libMyStatic include $(BUILD_SHARED_LIBRARY) I build it by doing: mmm external/mycode and get the

CMake can&#039;t find IMPORTED library

匿名 (未验证) 提交于 2019-12-03 07:36:14
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: In foo/CMakeLists.txt , based on this and this , I have the following SET (EXTERNAL_LIB_ROOT "../../external_libs/") ADD_LIBRARY (avcodec-debug STATIC IMPORTED) SET_PROPERTY ( TARGET avcodec-debug PROPERTY IMPORTED_LOCATION ${EXTERNAL_LIB_ROOT}/libavcodec-0.8.10.a) In bar/CMakeLists.txt I have this: # old way uses system libraries #TARGET_LINK_LIBRARIES (bar avformat avcodec avutil) # new way uses local debug builds TARGET_LINK_LIBRARIES (bar avformat avcodec-debug avutil) When I run make I get /usr/bin/ld: cannot find -lavcodec-debug If I

action不能往jsp中传递数据的问题

蓝咒 提交于 2019-12-03 06:56:31
struct z中一个action的配置如下: path="/library" parameter="method" name="libraryForm" scope="request" validate="true" type="org.springframework.web.struts.DelegatingActionProxy"> name="listLibrarys" path="/form/listlibrarys.jsp" redirect="true" /> action 中部分源代码: public ActionForward list(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { log.debug("list library "); List list = libraryManagerService.listLibrarys(); if(list == null) log.debug("there is not any library ,because list is null"); else log.debug("there are " + list.size() + " librarys .");