-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
361 lines (268 loc) · 12.1 KB
/
index.html
File metadata and controls
361 lines (268 loc) · 12.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>RMPader</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/bootstrap.css">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/font-mfizz.css">
<link rel="canonical" href="http://reypader.github.io/">
<link rel="alternate" type="application/rss+xml" title="RMPader"
href="http://reypader.github.io/feed.xml">
</head>
<body>
<nav class="navbar navbar-default navbar-static-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">RMPader</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="/">Home</a></li>
<li><a href="/me">My Resume</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
aria-expanded="false">Categories <span class="caret"></span></a>
<ul class="dropdown-menu">
<!--<li role="separator" class="divider"></li>-->
<li class="dropdown-header">Java</li>
<li><a href="/tag/java.html">Plain Java stuff</a></li>
<li><a href="/tag/spring.html">Spring Framework</a></li>
<li><a href="/tag/google-app-engine.html">Google App Engine</a></li>
</ul>
</li>
</ul>
<!--<ul class="nav navbar-nav navbar-right">-->
<!--<li><a href="../navbar/">Default</a></li>-->
<!--<li><a href="../navbar-static-top/">Static top</a></li>-->
<!--<li class="active"><a href="./">Fixed top <span class="sr-only">(current)</span></a></li>-->
<!--</ul>-->
</div>
</div>
</nav>
<div class="container content-wrapper">
<div class="home">
<div class="flowing">
<div class="col-md-4">
<div class="post-card panel panel-default">
<h3>
<span class="soon" title="coming soon...">How to: Secure your RESTful Application for Google App Engine</span>
</h3>
<span class="post-meta">
<time datetime="2016-01-27T18:53:00+08:00" itemprop="datePublished">
Coming soon...
</time>
</span>
<p><p>Learn how to configure your application to share sessions between GAE instances. You will learn how to properly configure Spring Security with Spring Boot in GAE due to JVM restrictions. This article builds upon the configuration shown in How to: Secure your RESTful Application - Part 2.</p>
</p>
<a href="/tag/java.html">
<span class="badge">java</span>
</a>
<a href="/tag/spring.html">
<span class="badge">spring</span>
</a>
<a href="/tag/spring-rest.html">
<span class="badge">spring-rest</span>
</a>
<a href="/tag/google-app-engine.html">
<span class="badge">google-app-engine</span>
</a>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-4">
<div class="post-card panel panel-default">
<h3>
<span class="soon" title="coming soon...">How to: Secure your RESTful Application - Part 3</span>
</h3>
<span class="post-meta">
<time datetime="2016-01-25T18:53:00+08:00" itemprop="datePublished">
Coming soon...
</time>
</span>
<p><p>Learn how to share sessions between instances. If you're deploying to the Cloud, this is probably what you're looking for. This article builds upon the configuration discussed in Part 2.</p>
</p>
<a href="/tag/java.html">
<span class="badge">java</span>
</a>
<a href="/tag/spring.html">
<span class="badge">spring</span>
</a>
<a href="/tag/spring-rest.html">
<span class="badge">spring-rest</span>
</a>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-4">
<div class="post-card panel panel-default">
<h3>
<span class="soon" title="coming soon...">How to: Secure your RESTful Application - Part 2</span>
</h3>
<span class="post-meta">
<time datetime="2016-01-22T18:53:00+08:00" itemprop="datePublished">
Coming soon...
</time>
</span>
<p><p>Secure your application through session cookies and POST login. This article aims to show you how to configure Spring Security for one of the most common security use-case. However, this article only assumes one application instance. If you have multiple instances in mind, then the next article might help.</p>
</p>
<a href="/tag/java.html">
<span class="badge">java</span>
</a>
<a href="/tag/spring.html">
<span class="badge">spring</span>
</a>
<a href="/tag/spring-rest.html">
<span class="badge">spring-rest</span>
</a>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-4">
<div class="post-card panel panel-default">
<h3>
<span class="soon" title="coming soon...">How to: Secure your RESTful Application - Part 1</span>
</h3>
<span class="post-meta">
<time datetime="2016-01-20T18:53:00+08:00" itemprop="datePublished">
Coming soon...
</time>
</span>
<p><p>Learn the basics of Spring Security for REST APIs - literally. In this article, you will be shown how to secure your application using Basic HTTP Authentication and implement a custom User class. New to Spring Security? I suggest you start here. Otherwise, i f you're considering authentication via POST, this is not the article for you. Try the next one.</p>
</p>
<a href="/tag/java.html">
<span class="badge">java</span>
</a>
<a href="/tag/spring.html">
<span class="badge">spring</span>
</a>
<a href="/tag/spring-rest.html">
<span class="badge">spring-rest</span>
</a>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-4">
<div class="post-card panel panel-default">
<h3>
<a class="post-link" href="/2016/01/06/spring-drools.html">How to: Integrate Drools and Spring Framework</a>
</h3>
<span class="post-meta">
<time datetime="2016-01-06T18:06:00+08:00" itemprop="datePublished">
Jan 6, 2016
</time>
</span>
<p><p>Spring is probably the most widely used framework for Java. Even for many enterprise-level applications, Spring is almost always used at some point - maybe even solely. Another buzz word(s) these days for enterprise applications is "Rule Engine" and Drools is one of them. Unfortunately, there seems to be a shortage of tutorials on how to actually integrate the two. This article aims to guide the weary developer into using both technologies into one application.</p>
</p>
<a href="/tag/java.html">
<span class="badge">java</span>
</a>
<a href="/tag/spring.html">
<span class="badge">spring</span>
</a>
<a href="/tag/drools.html">
<span class="badge">drools</span>
</a>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-4">
<div class="post-card panel panel-default">
<h3>
<a class="post-link" href="/2015/12/25/cloud-endpoints-spring.html">How to: Integrate Google Cloud Endpoints into the Spring Container</a>
</h3>
<span class="post-meta">
<time datetime="2015-12-25T18:53:00+08:00" itemprop="datePublished">
Dec 25, 2015
</time>
</span>
<p><p>When using Google App Engine, you have the a new REST framework available at your disposal - Google Cloud Endpoints. Unfortunately, it's not meant for use with Spring Beans. This article shows you how to tweak Google Cloud Endpoints and make them instantiate as Spring Beans.</p>
</p>
<a href="/tag/java.html">
<span class="badge">java</span>
</a>
<a href="/tag/spring.html">
<span class="badge">spring</span>
</a>
<a href="/tag/google-app-engine.html">
<span class="badge">google-app-engine</span>
</a>
<a href="/tag/google-cloud-endpoints.html">
<span class="badge">google-cloud-endpoints</span>
</a>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-4">
<div class="post-card panel panel-default">
<h3>
<a class="post-link" href="/2015/12/21/spring-request-mapping.html">How to: Declare more complex request mappings in Spring</a>
</h3>
<span class="post-meta">
<time datetime="2015-12-21T18:53:00+08:00" itemprop="datePublished">
Dec 21, 2015
</time>
</span>
<p><p>Learn various ways of declaring request handling in Spring. You'll be able to handle request based on path variables, request parameters, content types, etc. You'll also learn how to handle exceptions to create custom error responses.</p>
</p>
<a href="/tag/java.html">
<span class="badge">java</span>
</a>
<a href="/tag/spring.html">
<span class="badge">spring</span>
</a>
<a href="/tag/spring-rest.html">
<span class="badge">spring-rest</span>
</a>
<div class="clearfix"> </div>
</div>
</div>
</div>
<p class="rss-subscribe">subscribe <a href="/feed.xml">via RSS</a></p>
</div>
</div>
<hr/>
<footer class="container">
<div class="row">
<div class="col-sm-4 col-xs-6">
RMPader<br/>
<a href="mailto:reynaldmpader@gmail.com">reynaldmpader@gmail.com</a>
</div>
<div class="col-sm-4 col-xs-6">
<ul class="social-media-list">
<li>
<a href="https://github.com/reypader"><i class="fa fa-github-square"></i> <span class="username">reypader</span></a>
</li>
<li>
<a href="https://ph.linkedin.com/in/rmpader"><i class="fa fa-linkedin-square"></i> <span class="username">rmpader</span></a>
</li>
</ul>
</div>
<div class="col-sm-4 col-xs-12">
<p>This blog is by no means a source of "absolute truth". It's simply a guide to those who wants them. I hope that you find the contents of this site helpful and may the undying light of learning guide you.
</p>
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
crossorigin="anonymous"></script>
<script src="/js/toc.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#toc').toc({showSpeed: 0});
});
</script>
</body>
</html>