由买买提看人间百态

topics

全部话题 - 话题: spring
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
k********e
发帖数: 368
1
来自主题: Java版 - spring到底有什么好处?
简单的说:spring的精髓是IOC,AOP.
但实际中这种思想并不需要每行代码都要用,而是基于这两种思想而建立起来的spring
framework,让你的工作极其简单。不再需要写多余的代码,transaction,service
component,security, DAO, 等都直接可以用annotation标注,你就直接考虑自己的业
务逻辑而已。 那些数据库,安全,事物等都有spring来负责维持和注入。
相反,在此之前,60-80%的代码都是那些可以使用spring annotation可以解决的。
用习惯了,如果在回到老J2EE,感觉是有汽车不开,继续用老牛拉车。
z*******3
发帖数: 13709
2
来自主题: Java版 - 不明白Spring Framework很正常
不用学,学什么
spring超简单,所有java的工具里面,就spring最简单了
自己动手写一次就明白了
巨简单,其他无论什么framework都比spring难
因为依赖于其他东西的实现
比如hibernate就需要折腾jdbc
struts要折腾tomcat等web server
只有spring是原生态的存在
x****d
发帖数: 1766
3
来自主题: Java版 - Spring MVC vs Play 2
both action based/ request based
Spring MVC is not polyglot, Play!2 can use scala
spring dont have productivity boost features (you can use roo, but not
spring mvc itself) , play is meant to eliminate edit-build-deploy cycle, so
quick development, very good for prototyping.
When spring MVC came out, making coders happy is not important. Today, we
see it that making happy coder is high priority for a lot of frameworks. You
see play use the name happier.
that is the brick I throw for now...
b***i
发帖数: 3043
4
来自主题: Java版 - Spring例子求解释
我就是在openshift上直接创建了一个Spring的gear,spring-eap6-quickstart,然后下
载代码就是这样的。
奇怪的是我创建另一个Tomcat 7 (JBoss EWS 2.0)的gear,却有一个webapps目录,里面
是spring-eap6-quickstart.war。这个也带了spring?
我觉得openshift还很不完善,离GAE差了远了。象我这样的初学者还是不准备浪费时间
在这上面了。我准备用openshift/php建个论坛什么的算了。
b***i
发帖数: 3043
5
来自主题: Java版 - 现在学Spring需要装Maven吗?
Spring.io上面说,用Gradle或者Maven。那么,我是学在Openshift上运行Spring,需要
本地装Maven吗?
Openshift上的Spring quickstart项目里面有pom.xml,里面有Maven dependencies。
这是Eclipse集成了Maven还是Openshift上有Maven?
或者哪里可以找到下载spring那些jar?
W***o
发帖数: 6519
6
【 以下文字转载自 Programming 讨论区 】
发信人: Wardo (Wardo), 信区: Programming
标 题: Java Play Framework 和 Spring 比较一下?
发信站: BBS 未名空间站 (Thu Apr 3 17:18:53 2014, 美东)
今天花了2个小时把play framework 大致看了一下,感觉比Spring简单,没有那么繁琐
的xml配置,可以上来就写java class, 然后填routes, view等等,感觉速度很快的样
子。
Spring我还在学,感觉光写那个xml文件就够花时间的了,不知道这个有没有auto-
complete的ide. 各位怎么看?是不是对play这种框架不屑一顾? 看到youtube里面有
几个视频,linkedin的一些开发人员对play很推崇的样子。
另外,Spring的工作机会是不是比play要多了几个数量级?还是对于web development
工作来说,这两个对找工作没有区别?
z****e
发帖数: 54598
7
来自主题: Java版 - Spring JBOSS
哪些config files?
可能你遇到了jboss上的config,比如jpa之类的
jboss现在换名字了,叫wildfly
不过你们都用jboss了,还用spring干嘛
直接用jboss的di
用beans.xml就好了,跟spring是一样的
额外加一个spring反而麻烦,用spring干脆就把jboss干掉
用tomcat好了,jboss其他东西反而重
z****e
发帖数: 54598
8
来自主题: Java版 - Spring JBOSS
你自己写的那些java beans的管理
有不同的方式,tomcat管理servlet和threads的生命周期
不负责你写的那些beans的管理,这个就只能交给spring来做
如果jboss在的话,可以交给ejb container来做
vert.x则不主张share components,或者说是另外一种方式share
用msg bus来分享components,这里components要封装成一个module
spring不是server,spring只负责管理那些beans的生命周期
至于剩下的,是server的事,spring本身就是一个container或者说module
g*****g
发帖数: 34805
9
The short answer is yes.
http://jonasboner.com/2008/10/06/real-world-scala-dependency-in
While scala can implement DI without 3rd party dependency. If you compare
the code you can easily see how much easier to do it with DI framework with
Spring.
That's what I have been saying, built-in expressiveness can only take you so
far, it can never beat a full-fledged framework.
http://blog.typesafe.com/spring-integration-scala-dsl-announced
Spring is starting a project to do better integration with scal... 阅读全帖
x*******6
发帖数: 262
10
spring的repository对任何datasource都是一样的,这样就不用特别的去关注如何
query各种数据库了,都统一起来了。对应sql数据库的有spring-data-jpa,mongodb有
spring-data-mongodb,甚至还有spring-data-solr。因为service调用repository,就
算换了数据源也不用改service里面的代码。
W***o
发帖数: 6519
11
来自主题: Programming版 - Spring Web Services
Spring documentation should help:
http://docs.spring.io/spring/docs/4.0.0.RELEASE/spring-framewor
p*****g
发帖数: 7
12
If I want to learn Spring source code, I think Spring 2.x source is better.
First, Spring 2.x already has all the core elements of the framework.
Secondly, Spring 2.x is still not as bloated as today, Thirdly, if I
remember correctly, it doesn't advertise to use Java configuration but XML
configuration which is easy for us to grab how stuff works.
r*******e
发帖数: 971
13
来自主题: Programming版 - 请教有关java spring MVC的问题
1 我理解Java Spring MVC所谓的依靠注入,主要原因是因为java支撑的服务器只会编
译一次,因此绝大多数的对象(内存代码)都只能在运行时用反射机制建立。由于建立
对象所需的数值在运行时才存在,于是spring中需要Bean这个抽象容器描述对象,在运
行时注入具体参数建立对象。
2. Spring用Annotation Driven的主要意义是减少代码量。
3. Spring MVC的主要优点是运行效率高(相对Python Ruby PHP)
在Net I/O 密集与CPU 密集的场合都有很好的表现(不见得是最好)
方便分工协作。
缺点,太抽象,很难懂。没法热调试。
我的想法对么?
然后AOP (aspect oriented programming) 到底啥么意义??
z****e
发帖数: 54598
14


spring就是典型的非jee的产品
spring是非标准化di
真正的标准化di是beans.xml
和@Inject这些
spring用@Autowire
这个annotation就是典型的非标准化annotation
spring甚至还没有guice标准
guice倒是遵循了jsr标准
z****e
发帖数: 54598
15


spring就是典型的非jee的产品
spring是非标准化di
真正的标准化di是beans.xml
和@Inject这些
spring用@Autowire
这个annotation就是典型的非标准化annotation
spring甚至还没有guice标准
guice倒是遵循了jsr标准
z****e
发帖数: 54598
16
都可以用,vert.x只要你能启动spring,一样可以用spring注入,单线程也可以di,
spring与线程无关,只是多数时候spring管理的bean是singleton,如果有共享的field
或者叫变量,并发修改会出问题,这个做一个例子就懂了

:That is from software developer logical view point.
:From OS view point, The code you written are running in thread pool, right?
t**********s
发帖数: 930
17
估计红岩说的情况如果用Spring自己的 dispatcherservlet应该没问题。但混用Jersey
的 支持Spring的servlet(com.sun.jersey.spi.spring.container.servlet.
SpringServlet) 不行。
不过发现不import, 而是扫描root context 里的bean( -package="xxx.xxx"/>也work, 而且root context 里的bean,不会在servlet context
里再生成一遍。
i**********g
发帖数: 758
18
除了shell script, ui的tool我找到了spring batch admin,这个坑多吗?
大家有用过吗?官网说可以start, stop,restart,inspect a job,还有step,还有
可以
改设置
别的组里有batch job,以前都是plsql 然后公司有scheduler 的ui tool控制和管理,
现在经理说想改成spring batch,但是想有个ui的tool,将来方便管理和维护
经理让我research下,别的组也有spring batch的,但是不知道他们有没有ui tool,
还是全都都script来控制
要是用spring batch和admin的话,估计都是我写,这项目估计以后还要持续很久,起
码位置比较稳定
g*****t
发帖数: 53
19
Hi,
I have the following MFE study material for sale. All are in excellent
condition, some are better than other, no writing/marking except a few pages
/cards, normal wear. Shipping cost is negotiable and NOT included in the
price below. Send me a PM if you are interested. Thanks!
ActuarialBrew.com Exam MFE Review Notes, Spring 2011 NEW EDITION
http://www.actuarialbookstore.com/pr...d_id=453061853
ask for $39
ActuarialBrew.com Exam MFE Questions, Spring 2011 NEW EDITION
http://www.actuarialbooks... 阅读全帖
s***n
发帖数: 5
20
因8月初回国,计划在7月中下旬转租马里兰大学附近Seven Springs一室一厅(家具家
电齐全,有图,可散卖)。有意者请通过短信(610)812-6166,邮箱shixn227@gmail.
com,或qq 2507503357联系。
一、Seven Springs一室一厅转租
Seven Springs(Add: 9310 Cherry Hill Rd.)是马大附近较好的小区,有110班车往
返校园,小区有很多中国学生和访问学者居住。小区有游泳池、健身房、网球场、篮球
场等设施,且水、电、暖、停车等免费。
我们这幢楼位于小区中央,十分安静。小区的一室一厅在660-800 Sq. Ft.之间,我们
是面积最大的户型。其中客厅几乎有两个房间大,目前我们摆了两张床、沙发、茶几和
书桌也不显拥挤,所以不管是一家人住,还是两到三人合租,都是不错的选择。屋子的
南面和西面有整面墙的阳台窗和三扇大窗,采光和通风较好。另外灶台和烤箱是今年2
月新换的,超级好用
屋内家具家电齐全,详见下面介绍,需要的话可低价转卖,不需要的话我们会提前转出。
因我们回国前会去朋友家小住,具体的交接时间可方便接租... 阅读全帖
t****v
发帖数: 9235
21

中国游泳队奥运基地还在青海多巴呢
那个空军学院,一共才3000多学生,根本形不成产业,一个社区大学规模
说科罗拉多springs是红脖是因为美国有几个臭名昭著教会在那里异常活跃
colo springs在美国出名也是那些极右保守教会
和堪萨斯形成两个大本营
提起colo springs
美国人不会想起奥运基地
而是Evangelical Vatican,Christian Mecca
有81个教会组织,教会指挥中心
w*********s
发帖数: 2136
22
来自主题: WorldNews版 - Colorado Springs 穷到点不起灯了
Colorado Springs cuts into services considered basic by many
By Michael Booth
The Denver Post
COLORADO SPRINGS — This tax-averse city is about to learn what it looks and
feels like when budget cuts slash services most Americans consider part of
the urban fabric.
More than a third of the streetlights in Colorado Springs will go dark
Monday. The police helicopters are for sale on the Internet. The city is
dumping firefighting jobs, a vice team, burglary investigators, beat cops —
dozens of police
b*****g
发帖数: 2727
23
我不需要装spring,因为买的是strut&spring assembly (quick strut),spring已
经装在strut上了。谢谢。
m******e
发帖数: 481
24
来自主题: Automobile版 - tokico 的shock absorber 还要用spring 么
So should buy Coil spring, right?
Coil spring insulator and Coil spring seat needed or not?

google
K***n
发帖数: 131
25
来自主题: Automobile版 - 2008 Sienna Valve Spring 断了
车子在local 突然失去动力,停在路上, 还好不在highway 上, 还准备2天后用它跑
长途的,庆幸。
拖到修车的地方,说是coil leaking ,spark plug,catalytic converter 全部要换
, 收费5千。没有问题的旧车不过5-6千。 拖回来,打开valve cover, 准备换
leaking 的 coil(只有一个leaking), 发现engine 的 valve spring 断了。连上面
的retainner 都找不到。
电话给dealer 要换valve spring 要2-3千, 如果有其他engine问题,可能没有上限。
同样的engine (2GR-FE), lexus 就recall 了,sienna 就没有recall。
http://www.autoblog.com/2010/07/02/whats-really-going-on-with-toyotas-faulty-valve-springs-w-vi/
怎么办?求建议。
w********5
发帖数: 54
26
大家好!
现有一位于Sandy Springs和Dunwoody交界的独立房/单房出租。房子有大约3500平方尺
,四个卧室,三个半浴室。三个客卧要出租。房子交通方便,距离marta站7分钟。房子
带游泳池跟健身器材。
月租金在500-600之间。
房屋图片请见:
https://www.flickr.com/photos/135251598@N07/?
有意者请联系678-733-3239或者发邮件至[email protected]
/* */
谢谢!
The house has 4 beds, 3 ½ baths, and approximately 3,498 square feet.
The owner occupies the master bedroom and wants to rent out 3 guest rooms.
Here is the link to view pictures:
https://www.flickr.com/photos/135251598@N07/?
Room 1 has a bed set and tables ... 阅读全帖
r********0
发帖数: 49
27
房租:卧室$600/month,加网费电费大概$70/month左右;客厅$500/month,根据具体情
况可
以任选其一,欢迎看房。
公寓是1B1B,地处Silver Spring市中心,地段安全,24小时都有前台服务。现在舍友住
房间,由于其工作变更,三月底搬离。房间内有床铺,书桌,椅子(即可拎包入住)。客厅
面积很大,有两扇大窗户,平时阳光很足,且有现成帘子隔断,私秘性比较好。最重要的
是,房子格局不错,房间室友平时进出不需要经过客厅,也是拎包入住。
生活设施齐全,厨房洗碗机微波炉烤箱等都有,同楼层内有独立洗衣室(洗衣机烘干机
),十分方便。楼内更有24小时健身房,免费打印室,桌球室等便利设施。
公寓干净明亮,附近治安极好。交通出行极其便利:门口就是 Giant,CVS和一些餐厅,
走路5分钟到红线Silver Spring地铁站,10分钟到UMD校车站,15分钟到Silver Spring
downtown,有两家大型电影院(有IMAX), whole foods超市, H&M, DSW 等很多餐
厅和
逛衣服的店,一应俱全。再走五分钟可到safeway另一个大型超市。地铁到... 阅读全帖
j*******y
发帖数: 1039
28
Available: 09/05/2015
Email for showing appointment!
- Nice, Bright and fully secured gated community
- New carpet, new paint, new renovation throughout the condo
- 970 square ft
- 2 carports
- 2nd floor unit
- Community swimming pool
- Award winning schools:
* James Leitch (K-2, API 960) - 0.3Mile
* Warm Springs Elementary (3-6, API: 978) - 0.3 Mile
* John M.Horner Middle (API-920)
* Irvington High(API-884)
- Easy access to shopping & freeways
- Walking distance to Safeway, Banks, Post Office, ... 阅读全帖
w********5
发帖数: 54
29
大家好!
现有一位于Sandy Springs和Dunwoody交界的独立房/单房出租。房子有大约3500平方尺
,四个卧室,三个半浴室。三个客卧要出租。房子交通方便,距离marta站7分钟。房子
带游泳池跟健身器材。
月租金在500-600之间。
房屋图片请见:
https://www.flickr.com/photos/135251598@N07/?
有意者请联系678-733-3239或者发邮件至[email protected]
/* */
谢谢!
The house has 4 beds, 3 ½ baths, and approximately 3,498 square feet.
The owner occupies the master bedroom and wants to rent out 3 guest rooms.
Here is the link to view pictures:
https://www.flickr.com/photos/135251598@N07/?
Room 1 has a bed set and tables ... 阅读全帖
r********0
发帖数: 49
30
房租:卧室$600/month,加网费电费大概$70/month左右;客厅$500/month,根据具体情
况可
以任选其一,欢迎看房。
公寓是1B1B,地处Silver Spring市中心,地段安全,24小时都有前台服务。现在舍友住
房间,由于其工作变更,三月底搬离。房间内有床铺,书桌,椅子(即可拎包入住)。客厅
面积很大,有两扇大窗户,平时阳光很足,且有现成帘子隔断,私秘性比较好。最重要的
是,房子格局不错,房间室友平时进出不需要经过客厅,也是拎包入住。
生活设施齐全,厨房洗碗机微波炉烤箱等都有,同楼层内有独立洗衣室(洗衣机烘干机
),十分方便。楼内更有24小时健身房,免费打印室,桌球室等便利设施。
公寓干净明亮,附近治安极好。交通出行极其便利:门口就是 Giant,CVS和一些餐厅,
走路5分钟到红线Silver Spring地铁站,10分钟到UMD校车站,15分钟到Silver Spring
downtown,有两家大型电影院(有IMAX), whole foods超市, H&M, DSW 等很多餐
厅和
逛衣服的店,一应俱全。再走五分钟可到safeway另一个大型超市。地铁到... 阅读全帖
m**t
发帖数: 10
31
各位朋友,
本人原本想申请summer internship, 但由于时间申请较晚,
对方打算给一个an internship for the Fall and spring semesters.
本人对这个internship所涵盖的时间区间没有概念. 网上查了一些,
感觉还是有点模糊. 在Fall和spring中间不是还有一个winter吗?
请问有经验的朋友们, an internship for the Fall and spring
是表示的从几月到几月啊?
先谢谢大家了.
z****e
发帖数: 54598
32
学习不要纠结于细节
要明白为什么
j2ee虽然东西看着多
但是其实大同小异
就像di,你懂了spring之后
其他所有的ejb container的di
都是一样的,config不一样而已了
web service也是一样的
你理解了原理,管他用的是什么
不仅仅是Jersey
顺便,web service support已经是j2ee的一部分了
在里面叫做
Java API for RESTful Web Services (JAX-RS)
spring的di是cdi,应该是api的一部分了
javax.enterprise.inject.*
hibernate是orm,也就是jpa
Java Persistence API
除了web部分,其他了解了解,也没啥难的
不过现在比较流行的是非主流的东西
比如cassandra, elastic search, hadoop, spark, flink这些
都不是j2ee标准,j2ee不管persistence,只负责定义中间的container
当然我最看好的还是vert.x
其实这些东西到最后都是理论,细节和实现不重要
明白了理论之后,... 阅读全帖
j**********r
发帖数: 3798
33
guice就是 DI而已,而且没有 spring的灵活。

guice应该比spring在di和aop上强些吧 怎么也是站在spring肩膀上发展的

发帖数: 1
34
我用spring + hibernate的时候不是spring 管的
在hibernate.cfg.xml中加入
true
true
你用的是Spring自己的JDBC吧
s*****a
发帖数: 310
35
Several PhD Positions are open now for Spring 2016 at University of Texas at
Arlington, Center on Stochastic Modeling, Optimization, & Statistics
(COSMOS). The research areas will be on Data Mining and Analytics,
Data Sciences, Statistical Learning, Healthcare/Medical Informatics.
*One Postdoc position is also open in Data Mining and Health/Medical
Informatics, starting date: as soon as possible. The postdoc position
can support 2 years (or more).
招生信息:
Currently we are actively looking for q... 阅读全帖
H****g
发帖数: 236
36
不好意思,想买新床,想在传统的spring mattress 和memory foam 之间挑选。大家说
说这两个那一个好些啊?是不是 spring 的时间长了会老化?这样firm 的会变的中间
塌下去,而memory foam 的不会?
在 US-mattress 的网站上看了看,也在 overstock 的网站上看了看。感觉US-
mattress 的东西比 overstock 的东西贵了很多 啊?这个是怎么回事?还有,在US-
mattress 上说可以有免费的frame 送过来。这个frame 到底是什么东西啊?是不是就
只是架子,有没有slab 呢?如果只买memory foam 的mattress,不要spring box,必
须从新买有slab 的床啊?
真的不懂,谢谢指南!
s*****d
发帖数: 469
37
TORSION SPRING是一个人换的,但是不建议你自己搞,非常危险.
其实TORSION SPRING可以改装成EXTENTION SPRING.
一专业师傅.
G*H
发帖数: 624
38
谢谢.我之前已经找到了youtube上torsion spring的DIY video,上面有所有的步骤.
Spring的所有参数我都量好了.但是不太sure究竟要多大力气.
你的几尺长的winding bar的信息很重要!我注意到网上卖spring的带的或另外卖的
winding bar都只有16寸长.我打算在Lowes自己买两根3尺长的铁棍.
Anyway,要自己搞了.谢谢你的信息.
h**********g
发帖数: 143
39
来自主题: Living版 - 问个garage door spring 的问题
昨天我的房客打电话说garage door close 不了,找个人去修,sensor 坏了,换了新
的,好了,修的人说我的spring 太strong 了,这样我手动就拉 开门,说要吗换个轻
的spring,要吗换个重点的门。 大牛们有idea 这是怎么回事吗?spring 是个新的,用
了没几个月。谢谢指点。
b*******y
发帖数: 1458
40
禁止交易打印胖子;胖子是免费的,收费的是服务:
Deer Park Brand Sparkling Spring Water any (1) .5-Liter 6-packs or (2) 1-
Liter Bottles coupon
$1.00/1 inside 01-08-12 rp
expires 2/19/2012
所求物品名称:
Deer Park Brand Sparkling Natural Spring Water coupon
物品类别(coupon: mfc 等;血糖仪等):
01-08-12 rp coupons
物品来源(报纸夹页,厂家邮寄等):
Deer Park Brand Sparkling Natural Spring Water, any (1) .5-Liter 6-packs or
(2) 1-Liter Bottles coupon
01-08-12 RP
可接受的价格(必须明码标价,必填):
两张3包+邮费,至少5张以上。
希望在东岸,今天能邮出来。谢谢
邮寄损失方式哪方承担(若需邮寄,必填):
付款方式说明:
PAYPAL
本贴... 阅读全帖
i**********2
发帖数: 1114
41
来自主题: Stock版 - The stock spring is officially here
The stock spring is officially here
发信人: imageall2002 (image), 信区: Stock
标 题: Stock market's spring is at the corner
发信站: BBS 未名空间站 (Wed Jun 9 23:53:08 2010, 美东)
from Feb to Apr, the S&P up about 14%, now from Apr to now, it's down 13.27%
.
Stock market's spring is at the corner I would say. Hang in there.
C*****1
发帖数: 746
42
Let's go to Copley square and have fun! The largest Japanese festival ever
in Boston!
When: 12:00AM
Where: Copley Square (Green Line T Copley)
Eat all kinds of Japanese food.
My cell: 6173722058
http://www.japanfestivalboston.org/
"Haru Matsuri" Boston 2012
To commemorate the Centennial of the original gift of cherry trees from
Japan to Washington, D.C. in 1912, a number of events will take place in
various cities across the U.S. this spring. In Boston, “Haru Matsuri Boston
2012” will be held o... 阅读全帖
m***e
发帖数: 991
43
来自主题: Colorado版 - 总结一下Springs的中餐
各位版上的老大多在Denver以北,我跳出来总结一下Colorado Springs的中餐吧。搬到
Springs没多少日子,新兵发言,纯属个人口味,各位大大海涵.
Name: Ultimate Buffet
Ranking: *****
Website: http://www.ultimatebuffet.com/
Price: $6.99/lunch, $11.99/dinner (赞)
Location:
3727 Bloomington St.
Colorado Springs, CO 80922
Phone number: (719) 591-0768
Comments:
当前最爱。第一次去的时候很惊艳了一把,葱姜蟹,蟹腿,各式贝类,鱼,寿司,烤肉
。可惜离我家远了点,要不就成我家食堂啦。
Name: PF Chang's Chinese Bistro
Ranking: ****
Website: http://www.pfchangs.com/
Price: $20~$30/person
Location:
1725 Briargate Pkwy
Colorado Spri
m********t
发帖数: 9426
44
来自主题: Colorado版 - colorado springs 周末游求建议
请教一下版上的老科州们...:)
去colorado springs 过一个周末,住一晚(不知道有没有必要,因为家就住在
highlands ranch,但是想这个月开车去Pikes Peak)
现在打算去的几个地方:
Garden of the Gods (2 hours?)
Air Force Academy (1 hour)
Pikes Peak (no idea)
Manitou Springs (no idea)
any other suggestions near Colorado Springs?
另外得带一个两岁的小孩...这个可能影响挺大
Thanks.
y****n
发帖数: 1160
45
准备下午4:00-8:00在great sand dune玩, 然后再开车到Colorado Springs住可行吗?
这段路晚上好不好开? 还有South Colorado Springs - World Arena area 安全吗?
Central Colorado Springs - Garden of the Gods area呢?
今天就要定旅馆了, 希望知情的TX们大力帮助. 多谢!
i**r
发帖数: 998
46
http://events.ctcentral.com/hamden_ct/events/show/246811464-spr
Spring Wildflower Hike
Today, Sunday, Apr 29 1:30p to 4:30p
at Sleeping Giant State Park, Hamden, CT
Age Suitability: None Specified
Join us on our Spring Wildflower Hike. Hike along with us and enjoy the
great variety of spring wildflowers blooming in the park. The hike will
involve traveling over uneven, rocky terrain, possibly with a degree of rock
scrambling. Hikers should be in good physical condition. Wear comfortable,
support... 阅读全帖
z*****g
发帖数: 44
47
请教大家,我打算在Sandy spring租房子,Sandy spring哪个小学比较好?
另外有人说得去Dunwoody才能有好点的小学,还有Sandy spring治安不好,不知道是不
是这样?可是dunwoody好像离地铁远了一点。平常还是有时要乘地铁的。
w********5
发帖数: 54
48
大家好!
现有一位于Sandy Springs和Dunwoody交界的独立房/单房出租。房子有大约3500平方尺
,四个卧室,三个半浴室。三个客卧要出租。房子交通方便,距离marta站7分钟。房子
带游泳池跟健身器材。
月租金在500-600之间。
房屋图片请见:
https://www.flickr.com/photos/135251598@N07/?
有意者请联系678-733-3239或者发邮件至[email protected]
/* */
谢谢!
The house has 4 beds, 3 ½ baths, and approximately 3,498 square feet.
The owner occupies the master bedroom and wants to rent out 3 guest rooms.
Here is the link to view pictures:
https://www.flickr.com/photos/135251598@N07/?
Room 1 has a bed set and tables ... 阅读全帖
d*********n
发帖数: 360
49
Who:
Those who want to have a showtime in our Spring Festival Show
Those who want to be MC in our Spring Fesitival Show
Those who want to contribute to be volunteers in our Spring Festival Show
When:
This coming Saturday, 19th Dec, 2:00pm to 5:00pm
Where:
Hawkins Hall, thirteenth floor Lounge
What:
Talk about the program you want to show
Find partners if you need more participants
Throw out your ideas
Get the source to make your own showtime
****FREE FOOOOOD or other stuff will be provided******
s****s
发帖数: 50
50
【 以下文字转载自 Travel 讨论区 】
发信人: shenms (shenms), 信区: Travel
标 题: Palm Springs 附近有没有啥推荐的?
发信站: BBS 未名空间站 (Wed Feb 3 20:52:37 2010, 美东)
最近要去一趟Palm Springs, 在那里待一个周末,有没有什么推荐的好玩的地方?我比
较喜欢自然风
光,palm springs附近2-3小时以内的地方都可以考虑。 谢谢。
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)