J*******g 发帖数: 8775 | 1 The problem is that you are opposing your imaginary "religion". However,
fighting with yourself is kind of funny. Good job, Mr. Bean! |
|
s****2 发帖数: 4569 | 2 【 以下文字转载自 gardening 讨论区 】
发信人: seanx2 (sean), 信区: gardening
标 题: 第一茬嫩青蚕豆! The whole bean with green shell!
发信站: BBS 未名空间站 (Tue Apr 21 21:36:48 2015, 美东)
第一茬嫩青蚕豆,干煎里脊肉后煎/绿壳一起!陪上点龙舌兰/2锅头!
赞啊! Fresh! |
|
n*****i 发帖数: 819 | 3 中国超市里卖的那个mung bean flour是不是绿豆面啊?想做煎饼果子,可是我老娘说
绿豆面应该是有点绿色的,那个白白的是绿豆淀粉,不能做煎饼果子。难道要我吃白面
的煎饼吗?谁知道给说一说呗。谢了。 |
|
s*******d 发帖数: 4135 | 4 那意思就是说那个白的mung bean flour应该是绿豆面,right? |
|
w********2 发帖数: 16371 | 5 当年adobe 做法很恶心,自己没做好怪别人不support。
同时google利用这个对苹果的负面影响争取了一些android的用户群,主要目的已经达
到。
虽然flash 现在已经不那么火爆,Jelly Bean上也没再有,但google 还是继续供养
adobe。
不管怎么说,google 对于技术上的包容性还是比苹果要好,这个是internet 公司和产
品公司的不同吧。 |
|
N*******3 发帖数: 2589 | 6 先看看jelly bean能有多少装机量再说吧。
现在用户手头上的很多andro连4.0都装不了。 |
|
c**g 发帖数: 274 | 7 Is this a special case in JB? he mentioned if he "把所有BEAN或者
SERVLET打成个JAR文件,然后引入LIB" then no problem.
But as I understand, you always need to import the class if you don't want
to use full path name of a class and the compiled JSP is not under
the same package as that of the class you use, no matter you
"打成个JAR文件,然后引入LIB" or not. |
|
r***r 发帖数: 181 | 8 using CMP , there are two Entity beans , E1 and E2 .
E1 has a foreign key reference to E2.
when calling E1.remove() , got an ejb exception , saying " can not updat
e Table 1 to NULL, because Table 1 set "NOT NULL" constraints.
How to fix that ? I do not want to remove any constraints from the schem
a.
THx |
|
h**d 发帖数: 474 | 9 I have a property file, and would like to inject it into a spring bean as
Properties object or Map. Is there any easy way to achieve it?
Thanks. |
|
s******e 发帖数: 493 | 10 easiest way; use PropertyHolderConfigurer.
u can also use Spring resuorse bundle bean (forget the class name) if u want
I18N |
|
l****2 发帖数: 41 | 11 I want to pass component attributes from JSF page to a managed bean method
so that the method can return a value back to JSF page. But I found I can't
pass different attributes.
My problem is also described in the following post:
http://forum.java.sun.com/thread.jspa?threadID=759750&messageID=4340566
But I didn't get the solution from that post.
Anyone can help?
Thanks, |
|
A**o 发帖数: 1550 | 12 So session bean is much like the sticky session on web tier? |
|
z****e 发帖数: 54598 | 13 有必要,但是没有必要用到stateful session bean而已
用web session就可以了,这个也是server端的东西 |
|
s******n 发帖数: 876 | 14 你们对于session这个*词*的理解有误吧.
不一定是web session或者user session之类的.
session bean是泛指非persistent的scope.
可以对应到java servlet的application scope.
比方说各版当前在线人数. 没EJB可以用memcached
等distributed datastructure |
|
|
s******t 发帖数: 139 | 16 什么时候用Message Driven Bean?为什么要用?可以用其他的方法代替吗? |
|
h**o 发帖数: 548 | 17 谁给讲讲是干什么的为什么需要?
google一下,感觉就是把已经有的class 在 xml 之类的file 里按某种顺序整合一下就
成了一个
object 还是 application 的。 还是不明白, 整出来的object 是个占了内存的 真的
object 吗?
bean 有什么好处, 用和不用有何区别哪? |
|
t*********e 发帖数: 630 | 18 另外,stateless bean, 好像必须有 @stateless annotation 才算。 |
|
z****e 发帖数: 54598 | 19 太久没用了,我不太记得了
应该是default就是stateless
不确定,或者如果什么都不加就不是ejb
如果你用了spring那种方式的话
用beans.xml,那default就是singleton |
|
t*********e 发帖数: 630 | 20 在同一个页面,就是是同一个用户连续单击一个 button, 如果去掉 @singleton, 每次
就会产生一个不同的 bean instance. 也就是说,即使同一个用户,先后操作同一个事
件,也会被 container 认为是多任务的并发操作,因而产生多个 instance, 对应不同
的客户需求。像 counter 这样的多用户共享的对象,就要用 singleton,以保证在同一
个对象内操作。
问题是,浏览器里面的 session 的概念是不是和服务器里面 (尤其是 EJB) session
概念不一样。由于同一个页面,连续单击一个 button, 浏览器里面肯定是一个
session, 但是在 Web 容器里面就被看成了多用户,多 session 的操作(至少是潜在
的). 可以这样认为不? |
|
g*****g 发帖数: 34805 | 21 stateful session bean没啥大用,是scale的大忌。单节点的时候看着很方便,等你量
上来了,单节点撑不住,立马面临程序重写。同样的需求,你把它扔进一个关系数据库
,不就简单多了。 |
|
Y**G 发帖数: 1089 | 22 这样的配置,在servlet的spring context中找不到,会自动fallback到全局的spring
context中去,不需要import
子容器可以引用父容器中的bean,反之不行。 |
|
c*********e 发帖数: 16335 | 23 lz说了,不import,调用root context 里的bean都会出现 NPE
spring |
|